Skip to content

Instantly share code, notes, and snippets.

@xuncheng
Created July 17, 2013 13:11
Show Gist options
  • Save xuncheng/6020435 to your computer and use it in GitHub Desktop.
Save xuncheng/6020435 to your computer and use it in GitHub Desktop.
Gemfile
source 'https://rubygems.org'
gem 'rails', '3.2.11'
gem 'haml-rails'
gem 'bootstrap-sass'
gem "bcrypt-ruby", "~> 3.0.1"
gem "bootstrap_form", "~> 1.0.0"
gem 'fabrication'
gem 'faker'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
group :development do
gem 'sqlite3'
gem 'pry'
gem 'pry-nav'
gem 'pry-rails'
gem 'better_errors'
gem 'binding_of_caller'
end
group :development, :test do
gem "rspec-rails", "~> 2.13.2"
end
group :test do
gem "shoulda-matchers", "~> 2.2.0"
end
group :production do
gem 'pg'
end
gem 'jquery-rails'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment