Class: Chamber::Binary::Runner

Inherits:
Thor
  • Object
show all
Includes:
Thor::Actions
Defined in:
lib/chamber/binary/runner.rb

Instance Method Summary collapse

Instance Method Details

#compareObject



121
122
123
# File 'lib/chamber/binary/runner.rb', line 121

def compare
  Commands::Compare.call(options.merge(shell: self))
end

#filesObject



94
95
96
# File 'lib/chamber/binary/runner.rb', line 94

def files
  puts Commands::Files.call(options.merge(shell: self))
end

#initObject



149
150
151
# File 'lib/chamber/binary/runner.rb', line 149

def init
  Commands::Initialize.call(options.merge(shell: self))
end

#secureObject



140
141
142
# File 'lib/chamber/binary/runner.rb', line 140

def secure
  Commands::Secure.call(options.merge(shell: self))
end

#showObject



86
87
88
# File 'lib/chamber/binary/runner.rb', line 86

def show
  puts Commands::Show.call(options.merge(shell: self))
end