forked from jefflarkin/rails-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
bort.rb
32 lines (27 loc) · 1010 Bytes
/
bort.rb
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")