Skip to content

Instantly share code, notes, and snippets.

@naoty
Created November 9, 2011 12:37
Show Gist options
  • Save naoty/1351315 to your computer and use it in GitHub Desktop.
Save naoty/1351315 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails'
gem 'unicorn'
gem 'capistrano'
gem 'mysql2'
gem 'devise'
gem 'omniauth', '~> 0.3.2'
gem 'haml-rails'
gem 'jquery-rails'
gem 'kaminari'
group :assets do
gem 'sass-rails'
gem 'coffee-rails'
gem 'uglifier'
end
group :development, :test, :cucumber do
gem 'ruby-debug19'
gem 'rspec-rails'
gem 'cucumber-rails'
gem 'factory_girl_rails'
gem 'database_cleaner'
gem 'spork'
gem 'rb-fsevent'
gem 'watchr'
end
group :production do
gem 'therubyracer'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment