lib/stanwood.rb in stanwood-0.1.11 vs lib/stanwood.rb in stanwood-0.2.0
- old
+ new
@@ -1,7 +1,10 @@
require "stanwood/version"
+require 'colored2'
+require 'stanwood/configurator'
module Stanwood
- def self.hi(name)
- puts "Testing stanwood gem" + name
+
+ def self.execute(argv)
+ Stanwood::Configurator.new(argv).run
end
end