Created
November 9, 2012 16:16
-
-
Save piotrze/4046593 to your computer and use it in GitHub Desktop.
Rails application template with mongo, rspec, jasmine
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
#installing rails | |
rails new app_name --skip-active-record | |
#generators | |
rails g rspec:install | |
rails g mongoid:config | |
rails g jasmine:install | |
rake db:create | |
#cleanup | |
rm -rf test/ | |
rm public/index.html | |
mv app/views/layouts/application.html.erb app/views/layouts/application.html.haml | |
#spec.css | |
/* | |
*= require application | |
*/ | |
#spec/javascripts/spec.js | |
//= require application | |
//= require_tree ./helpers/. | |
//= require_tree . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment