lib/taketo/constructs_factory.rb in taketo-0.2.0.alpha vs lib/taketo/constructs_factory.rb in taketo-0.2.0
- old
+ new
@@ -1,10 +1,10 @@
require 'taketo/constructs'
module Taketo
- class ConstructsFactory
+ class ConstructsFactory
def create(type, *args)
send("create_#{type}", *args)
end
def create_config
@@ -29,7 +29,8 @@
def create_command(*args)
Constructs::Command.new(*args)
end
end
+
end