magic_recipes 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/magic_recipes.rb +2 -1
- metadata +1 -1
data/lib/magic_recipes.rb
CHANGED
@@ -61,7 +61,8 @@ module MagicRecipes
|
|
61
61
|
|
62
62
|
def template(from, to)
|
63
63
|
erb = File.read(File.expand_path("../magic_recipes/templates/#{from}", __FILE__))
|
64
|
-
put ERB.new(erb).result(binding), to
|
64
|
+
# put ERB.new(erb).result(binding), to
|
65
|
+
scp ERB.new(erb).result(binding), to
|
65
66
|
end
|
66
67
|
|
67
68
|
def set_default(name, *args, &block)
|