public
Description: A library of neat Rails application templates.
Homepage:
Clone URL: git://github.com/jeremymcanally/rails-templates.git
Click here to lend your support to: rails-templates and make a donation at www.pledgie.com !
Mark Daggett (author)
Fri Feb 06 10:47:06 -0800 2009
jeremymcanally (committer)
Thu Apr 09 15:48:49 -0700 2009
rails-templates / entp.rb
100644 26 lines (20 sloc) 0.71 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# entp.rb
# from Jeremy McAnally
 
plugin 'rspec', :git => 'git://github.com/dchelimsky/rspec.git'
plugin 'rspec-rails', :git => 'git://github.com/dchelimsky/rspec-rails.git'
plugin 'restful-authentication', :git => 'git://github.com/technoweenie/restful-authentication.git'
plugin 'open_id_authentication', :git => 'git://github.com/rails/open_id_authentication.git'
plugin 'exception_notifier', :git => 'git://github.com/rails/exception_notification.git'
 
gem 'mislav-will-paginate'
gem 'ruby-openid'
gem 'rubyist-aasm'
 
rakefile "bootstrap.rake", <<CODE
namespace :app do
task :bootstrap do
end
task :seed do
end
end
CODE
 
generate("authenticated", "user session")
generate("rspec")