Created
April 26, 2012 23:21
-
-
Save josemarluedke/2504076 to your computer and use it in GitHub Desktop.
A beautiful Gemfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'rails', '3.2.3' | |
# Database | |
gem 'pg' | |
gem "foreigner" | |
# Improvements | |
gem 'inherited_resources' | |
gem 'has_scope' | |
# Authentication | |
gem "devise", "~> 2.0.4" | |
gem "omniauth", "~> 1.1.0" | |
gem "omniauth-facebook", "~> 1.2.0" | |
# Heroku | |
gem 'thin' | |
gem 'heroku' | |
# Frontend stuff | |
gem 'jquery-rails' | |
gem "slim" | |
gem "slim-rails" | |
gem "rails-backbone" | |
# Tools | |
gem 'simple_form' | |
gem 'auto_html' | |
# Administration | |
gem 'activeadmin' | |
group :assets do | |
gem 'sass-rails', '~> 3.2.3' | |
gem 'coffee-rails', '~> 3.2.1' | |
gem "compass-rails", "~> 1.0.1" | |
gem 'bootstrap-sass' | |
gem 'uglifier', '>= 1.0.3' | |
end | |
group :production do | |
gem "execjs" | |
gem 'therubyracer', :platform => :ruby | |
end | |
group :development, :test do | |
gem "rspec-rails", ">= 2.0.1" | |
gem "shoulda-matchers" | |
gem "machinist", ">= 2.0.0.beta2" | |
gem "ffaker" | |
gem 'database_cleaner' | |
gem "capybara" | |
gem "jasmine" | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment