Class: Avm::Launcher::Context
- Inherits:
-
Object
- Object
- Avm::Launcher::Context
- Includes:
- EacRubyUtils::SimpleCache
- Defined in:
- lib/avm/launcher/context.rb,
lib/avm/launcher/context/settings.rb,
lib/avm/launcher/context/instance_manager.rb,
lib/avm/launcher/context/instance_collector.rb,
lib/avm/launcher/context/instance_discovery.rb,
lib/avm/launcher/context/instance_manager/cached_instance.rb,
lib/avm/launcher/context/instance_manager/cached_instances.rb
Defined Under Namespace
Classes: InstanceCollector, InstanceDiscovery, InstanceManager, Settings
Constant Summary collapse
- CONFIG_PATH_PREFIX =
'launcher'
Class Attribute Summary collapse
Instance Attribute Summary collapse
-
#cache_root ⇒ Object
readonly
Returns the value of attribute cache_root.
-
#instance_manager ⇒ Object
Returns the value of attribute instance_manager.
-
#publish_options ⇒ Object
Returns the value of attribute publish_options.
-
#recache ⇒ Object
Returns the value of attribute recache.
-
#root ⇒ Object
readonly
Returns the value of attribute root.
-
#settings ⇒ Object
readonly
Returns the value of attribute settings.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(options = {}) ⇒ Context
constructor
A new instance of Context.
- #instance(name) ⇒ Object
- #instances ⇒ Object
- #pending_instances ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Context
Returns a new instance of Context.
36 37 38 39 40 41 42 43 44 |
# File 'lib/avm/launcher/context.rb', line 36 def initialize( = {}) = .with_indifferent_access @root = ::Avm::Launcher::Paths::Logical.new(self, nil, build_option(:projects_root), '/') @settings = ::Avm::Launcher::Context::Settings.new(build_option(:settings_file)) @cache_root = build_option(:cache_root) = { new: false, confirm: false, stereotype: nil } @instance_manager = ::Avm::Launcher::Context::InstanceManager.new(self) @recache = false end |
Class Attribute Details
.current ⇒ Object
22 23 24 |
# File 'lib/avm/launcher/context.rb', line 22 def current @current ||= default end |
Instance Attribute Details
#cache_root ⇒ Object (readonly)
Returns the value of attribute cache_root.
31 32 33 |
# File 'lib/avm/launcher/context.rb', line 31 def cache_root @cache_root end |
#instance_manager ⇒ Object
Returns the value of attribute instance_manager.
32 33 34 |
# File 'lib/avm/launcher/context.rb', line 32 def instance_manager @instance_manager end |
#publish_options ⇒ Object
Returns the value of attribute publish_options.
32 33 34 |
# File 'lib/avm/launcher/context.rb', line 32 def end |
#recache ⇒ Object
Returns the value of attribute recache.
32 33 34 |
# File 'lib/avm/launcher/context.rb', line 32 def recache @recache end |
#root ⇒ Object (readonly)
Returns the value of attribute root.
31 32 33 |
# File 'lib/avm/launcher/context.rb', line 31 def root @root end |
#settings ⇒ Object (readonly)
Returns the value of attribute settings.
31 32 33 |
# File 'lib/avm/launcher/context.rb', line 31 def settings @settings end |
Class Method Details
.default ⇒ Object
26 27 28 |
# File 'lib/avm/launcher/context.rb', line 26 def default @default ||= Context.new end |
Instance Method Details
#instance(name) ⇒ Object
46 47 48 |
# File 'lib/avm/launcher/context.rb', line 46 def instance(name) instances.find { |i| i.name == name } end |
#instances ⇒ Object
50 51 52 |
# File 'lib/avm/launcher/context.rb', line 50 def instances @instance_manager.instances end |
#pending_instances ⇒ Object
54 55 56 |
# File 'lib/avm/launcher/context.rb', line 54 def pending_instances @instance_manager.pending_instances end |