Skip to content

Instantly share code, notes, and snippets.

@rpheath
Created December 3, 2008 23:28
Show Gist options
  • Save rpheath/31759 to your computer and use it in GitHub Desktop.
Save rpheath/31759 to your computer and use it in GitHub Desktop.
template(:rph) do
gem 'RedCloth'
gem 'mislav-will_paginate'
gem 'ruby-openid'
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 'hoptoad_notifier', :git => 'git://github.com/thoughtbot/hoptoad_notifier.git'
plugin 'navigation_helper', :git => 'git://github.com/rpheath/navigation_helper.git'
plugin 'acts_as_lookup', :git => 'git://github.com/rpheath/acts_as_lookup.git'
plugin 'input_css', :git => 'git://github.com/rpheath/input_css.git'
plugin 'form_assistant', :git => 'git://github.com/rpheath/form_assistant.git'
initializer 'hoptoad.rb' do
HoptoadNotifier.configure do |config|
config.api_key = 'HOPTOAD-KEY'
end
end
initializer 'time_formats.rb' do
{ :short_date => "%x", :long_date => "%a, %b %d, %Y" }.each do |k, v|
ActiveSupport::CoreExtensions::Time::Conversions::DATE_FORMATS.update(k => v)
end
end
generate('authenticated', 'user session')
generate('rspec')
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment