Skip to content

Commit

Permalink
Add bort and entp templates
Browse files Browse the repository at this point in the history
  • Loading branch information
jm committed Dec 2, 2008
1 parent 67d2a6a commit 3b8c177
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
14 changes: 14 additions & 0 deletions bort.template
@@ -0,0 +1,14 @@
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'
gem 'rubyist-aasm'
gem 'ruby-openid'

generate("authenticated", "user session")
generate("rspec")
22 changes: 22 additions & 0 deletions entp.template
@@ -0,0 +1,22 @@
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")

1 comment on commit 3b8c177

@sbecker
Copy link

@sbecker sbecker commented on 3b8c177 Dec 6, 2008

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the bort template, the :git url for asset packager is pointing to the plugin homepage, instead of the git repository:

plugin ‘asset_packager’, :git => ‘http://synthesis.sbecker.net/pages/asset_packager’

should be:

plugin ‘asset_packager’, :git => ‘git://github.com/sbecker/asset_packager.git’

Please sign in to comment.