Skip to content

Instantly share code, notes, and snippets.

@spif
Created November 17, 2011 19:56
Show Gist options
  • Save spif/1374303 to your computer and use it in GitHub Desktop.
Save spif/1374303 to your computer and use it in GitHub Desktop.
source 'http://rubygems.org'
gem 'rails', '3.1.1'
gem 'pg'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use thin as the web server
gem 'thin'
# Use active admin as the admin interface
gem 'activeadmin'
gem 'meta_search', '>= 1.1.0.pre'
gem 'devise'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.1.4'
gem 'coffee-rails', '~> 3.1.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'sass-rails', '~> 3.1.4'
gem 'compass', "~> 0.11.5"
gem 'jquery-rails'
gem 'dalli'
group :development do
gem 'rspec-rails'
gem 'heroku'
end
# To use debugger
# gem 'ruby-debug19', :require => 'ruby-debug'
group :test do
# Pretty printed test output
gem 'turn'
gem 'rspec-rails'
gem 'launchy'
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'cucumber-rails'
gem 'capybara'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment