lib/stanwood.rb in stanwood-0.1.1 vs lib/stanwood.rb in stanwood-0.1.3
- 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