-
-
Save zh/1632049 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 => :rspec, :orm => :mongoid | |
| generate :model, "account username:string password:string" | |
| generate :model, "post title:string body:string" | |
| generate :controller, "posts get:index get:new post:new" | |
| generate :migration, "AddEmailToAccount email:string" | |
| generate :controller, "accounts get:index" | |
| git :init | |
| git :add, "." | |
| git :commit, "initial commit" | |
| inject_into_file "models/post.rb","#Hello", :after => "end\n" | |
| initializer :test, "# Example" | |
| git :add, "." | |
| git :commit, "second commit" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment