Method: Integra.command!
- Defined in:
- lib/integra.rb
.command!(options = {}) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# File 'lib/integra.rb', line 14 def self.command!(={}) @logger = Logger.new @config = Config.new() # # When user enters with a path or file as argument, just run it. # unless Commands.respond_to?([:command]) [:args] << [:command] [:command] = :run end Commands.send([:command], ) end |