Skip to content

Instantly share code, notes, and snippets.

@swarut
Created October 1, 2012 11:35
Show Gist options
  • Select an option

  • Save swarut/3811102 to your computer and use it in GitHub Desktop.

Select an option

Save swarut/3811102 to your computer and use it in GitHub Desktop.
Rails : Essential gem #rails #gem
source 'https://rubygems.org'
gem 'rails', '3.2.8'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'sqlite3'
gem 'mysql2'
gem 'jquery-rails'
gem 'hashie'
gem 'squeel'
gem 'draper'
gem 'gon'
gem 'haml'
gem 'cancan'
gem 'devise'
# gem "bootstrap-sass", ">= 2.1.0.0"
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
group :development do
gem 'haml-rails'
gem 'thin'
gem 'hirb'
gem 'pry'
gem 'pry-rails'
gem 'ruby-debug-pry', :require => 'ruby-debug/pry'
end
group :development, :test do
gem 'debugger'
gem 'faker'
gem 'machinist'
gem 'rspec-rails'
end
group :test do
gem 'capybara'
gem 'database_cleaner'
end
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment