jeremymcanally / rails-templates

A library of neat Rails application templates.

This URL has Read+Write access

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")