Sha256: 3d059a44922d768d94bcfd35bbbc41fd68d6f5c5b1e00ca2b4af0c4679d57ab7
Contents?: true
Size: 280 Bytes
Versions: 3
Compression:
Stored size: 280 Bytes
Contents
require 'command_butler/mediator' module CommandButler class Executer < Thor # default_task :execute desc :filename, "commands list file" option :val_file, :type => :string def execute(file_name) Mediator.new.execute(file_name, options) end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
command_butler-0.0.3 | lib/command_butler/executer.rb |
command_butler-0.0.2 | lib/command_butler/executer.rb |
command_butler-0.0.1 | lib/command_butler/executer.rb |