Created
December 17, 2015 11:03
-
-
Save rummelonp/c14ac1b7c2eb9cfe0083 to your computer and use it in GitHub Desktop.
rails new した後に入れたら便利そうなやつとか
This file contains hidden or 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', '4.2.0' | |
gem 'active_decorator' | |
gem 'coffee-rails', '~> 4.1.0' | |
gem 'enumerize' | |
gem 'figaro' | |
gem 'jquery-rails' | |
gem 'kaminari' | |
gem 'mysql2' | |
gem 'sass-rails', '~> 5.0' | |
gem 'turbolinks' | |
gem 'uglifier', '>= 1.3.0' | |
group :staging, :production do | |
gem 'unicorn' | |
end | |
group :development do | |
gem 'annotate' | |
gem 'better_errors' | |
gem 'binding_of_caller' | |
gem 'capistrano' | |
gem 'capistrano-rails' | |
gem 'capistrano-rbenv' | |
gem 'capistrano3-unicorn' | |
gem 'letter_opener' | |
gem 'migration_comments' | |
gem 'quiet_assets' | |
end | |
group :development, :test do | |
gem 'awesome_print' | |
gem 'byebug' | |
gem 'pry-byebug' | |
gem 'pry-rails' | |
gem 'rspec-rails' | |
gem 'spring' | |
gem 'web-console', '~> 2.0' | |
end | |
group :test do | |
gem 'database_cleaner' | |
gem 'simplecov', require: false | |
gem 'shoulda-matchers' | |
gem 'webmock' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment