lib/tasks/solder_tasks.rake in solder-0.2.0 vs lib/tasks/solder_tasks.rake in solder-0.3.0
- old
+ new
@@ -1,4 +1,6 @@
-# desc "Explaining what the task does"
-# task :solder do
-# # Task goes here
-# end
+namespace :solder do
+ desc "Install Solder into the app"
+ task :install do
+ system "#{RbConfig.ruby} ./bin/rails app:template LOCATION=#{File.expand_path("../install/install.rb", __dir__)}"
+ end
+end