Method: Stool::Command#run

Defined in:
lib/stool/Command.rb

#runObject



36
37
38
39
40
41
42
43
44
45
46
47
# File 'lib/stool/Command.rb', line 36

def run
  puts 'it works!!'

  cc = Config::loadConfig

  cc.pools.map do |x|

    puts x.path
    puts x.name
  end

end