Created
April 5, 2010 05:54
-
-
Save achiurizo/356081 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project :test => :shoulda, :orm => :activerecord, :dev => true | |
generate :model, "post title:string body:text" | |
generate :controller, "posts get:index get:new post:new" | |
generate :migration, "AddEmailToUser email:string" | |
generate :fake, "foo bar" | |
require_dependencies 'nokogiri' | |
inject_into_file "app/models/post.rb","#Hello", :after => "end\n" | |
initializer :test, "# Example" | |
app :testapp do | |
generate :controller, "users get:index" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment