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 / bort.rb
100644 32 lines (27 sloc) 1.01 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
27
28
29
30
31
32
# bort.rb
# from Jeremy McAnally, Pratik Naik
# based on bort by Jim Neath
 
inside('vendor') do
  run "ln -s ~/commit-rails/rails rails"
end
 
plugin 'rspec',
  :git => 'git://github.com/dchelimsky/rspec.git'
plugin 'rspec-rails',
  :git => 'git://github.com/dchelimsky/rspec-rails.git'
plugin 'exception_notifier',
  :git => 'git://github.com/rails/exception_notification.git'
plugin 'open_id_authentication',
  :git => 'git://github.com/rails/open_id_authentication.git'
plugin 'asset_packager',
  :git => 'http://synthesis.sbecker.net/pages/asset_packager'
plugin 'role_requirement',
  :git => 'git://github.com/timcharper/role_requirement.git'
plugin 'restful-authentication',
  :git => 'git://github.com/technoweenie/restful-authentication.git'
 
gem 'mislav-will_paginate', :version => '~> 2.2.3',
  :lib => 'will_paginate', :source => 'http://gems.github.com'
gem 'rubyist-aasm'
gem 'ruby-openid'
 
rake("gems:install", :sudo => true)
 
generate("authenticated", "user session")
generate("rspec")