Skip to content

Instantly share code, notes, and snippets.

@cmaxw
Created October 10, 2009 04:55
Show Gist options
  • Save cmaxw/206617 to your computer and use it in GitHub Desktop.
Save cmaxw/206617 to your computer and use it in GitHub Desktop.
Rails Templates
gem "cucumber"
gem "webrat", :version => '>= 0.4.4'
gem "rspec"
gem "rspec-rails"
gem "daemons"
gem "nifty-generators"
plugin(:annotate_models, :svn => "http://repo.pragprog.com/svn/Public/plugins/annotate_models")
plugin(:daemon_generator, :git => "git://github.com/dougal/daemon_generator.git")
generate(:nifty_authentication)
generate(:nifty_layout)
generate(:rspec)
rake "gems:install"
rake "db:migrate"
rake "annotate_models"
generate(:controller, "site", "index")
route "map.root :controller => :site"
git :init
git :add => "."
git :commit => "-a -m 'Initial commit'"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment