class EacLauncher::Runner::Instances
Constants
- DOC
Public Instance Methods
run()
click to toggle source
# File lib/eac_launcher/runner/instances.rb, line 22 def run ::EacLauncher::Context.current.recache = options['--recache'] instances.each { |i| show_instance(i) } end
Private Instance Methods
instance_path()
click to toggle source
# File lib/eac_launcher/runner/instances.rb, line 36 def instance_path options['<instance_path>'] end
show_instance(instance)
click to toggle source
# File lib/eac_launcher/runner/instances.rb, line 29 def show_instance(instance) puts instance_label(instance) infov(' * Parent', (instance.parent ? instance_label(instance.parent) : '-')) infov(' * Git current revision', instance.options.git_current_revision) infov(' * Git publish remote', instance.options.git_publish_remote) end