/ Published in: Rails
URL: http://railscasts.com/episodes/148-app-templates-in-rails-2-3
put this in a template to create a rake task
Expand |
Embed | Plain Text
rakefile("hurra.rake") do <<-TASK namespace :hurra do desc "legt einen User an mit authlogic" task :user => :environment do %x{bundle install} %x{r g nifty:layout} end end TASK end
You need to login to post a comment.
