Created
October 4, 2012 12:51
-
-
Save douhashi/3833356 to your computer and use it in GitHub Desktop.
Gemfile for example 1
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.8' | |
# Bundle edge Rails instead: | |
# gem 'rails', :git => 'git://github.com/rails/rails.git' | |
gem 'sqlite3' | |
# 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' | |
# See https://github.com/sstephenson/execjs#readme for more supported runtimes | |
# gem 'therubyracer', :platforms => :ruby | |
gem 'uglifier', '>= 1.0.3' | |
end | |
gem 'jquery-rails' | |
gem "twitter-bootstrap-rails" | |
gem 'simple_form', '~> 2.0.0' | |
# AUTHENTICATION | |
gem 'devise' | |
# DEVELOP AND TESTING ##################### | |
group :development, :test do | |
gem "rspec-rails", "~> 2.0" | |
gem 'capybara-webkit' | |
gem 'spork' | |
gem "rails3-generators", :git => "https://github.com/neocoin/rails3-generators.git" | |
gem 'rails-sh' | |
gem 'pry-rails' # binging.pry | |
gem 'pry-nav' # step/next/continue | |
# gem 'pry-exception_explorer' # require 'pry-exception_explorer' # continue-exception | |
# gem 'pry-stack_explorer' # show-stack/farm | |
# gem 'pry-coolline' | |
end | |
gem 'ffaker' # NOTE: stagingでのテストデータ用に | |
gem "slim-rails" # NOTE: productionでも使うらしい | |
group :development do | |
gem 'i18n_generators' | |
end | |
gem 'factory_girl_rails' | |
group :test do | |
gem 'cucumber-rails', :require => false | |
gem 'database_cleaner' | |
end | |
group :development do | |
gem 'rb-fsevent' | |
gem 'guard-shell' | |
gem 'guard-bundler' | |
gem 'guard-spork' | |
gem 'guard-rspec' | |
gem 'guard-cucumber' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment