Skip to content

Instantly share code, notes, and snippets.

@kuwabarahiroshi
Last active December 23, 2015 06:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kuwabarahiroshi/6594369 to your computer and use it in GitHub Desktop.
Save kuwabarahiroshi/6594369 to your computer and use it in GitHub Desktop.
最近使ってるGemfileです。
#
# Please keep gems in alphabetical order in each block.
# Gemはアルファベット順に記述をお願い致します。
#
source 'https://rubygems.org'
ruby '2.0.0'
gem 'awesome_print'
gem 'aws-sdk'
gem 'aws_cf_signer'
gem 'bcrypt-ruby', '~> 3.0.0'
gem 'bower-rails', '~> 0.4.0'
gem 'cancan'
gem 'devise'
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'haml-rails'
gem 'jbuilder', '~> 1.2'
gem 'jquery-rails'
gem 'kaminari'
gem 'koala'
gem 'pg'
gem 'paperclip'
gem 'paranoia', '~> 2.0' # re-implementation of acts_as_paranoid, compatible with Rails 4
gem 'pie-rails'
gem 'rack'
gem 'rails', '4.0.0'
gem 'rails_12factor', group: :production
gem 'rails_serve_static_assets'
gem 'rails_config'
gem 'turbolinks'
gem 'unicorn'
group :doc do
gem 'sdoc', require: false
end
group :assets do
gem 'coffee-rails', '~> 4.0.0'
gem 'sass-rails', '~> 4.0.0'
gem 'therubyracer'
gem 'less-rails'
gem 'uglifier', '>= 1.3.0'
end
group :development, :test, :staging do
gem 'certified'
gem 'ci_reporter'
gem 'cucumber'
gem 'cucumber-rails'
gem 'database_cleaner'
gem 'debugger'
gem 'fabrication'
gem 'guard'
gem 'guard-cucumber'
gem 'guard-livereload'
gem 'guard-jasmine'
gem 'guard-rspec'
gem 'guard-spring'
gem 'image_optim'
gem 'jasminerice', git: 'https://github.com/bradphelan/jasminerice.git'
gem 'mailtrap'
gem 'mocha'
gem 'pry-rails'
gem 'pry-debugger'
gem 'rb-fsevent'
gem 'rb-inotify', require: RUBY_PLATFORM.include?('linux') && 'rb-inotify'
gem 'rspec-rails'
gem 'shoulda'
gem 'simplecov'
gem 'simplecov-rcov'
gem 'terminal-notifier-guard', require: RUBY_PLATFORM.include?('darwin') && 'terminal-notifier-guard'
gem 'timecop'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'capistrano'
gem 'capistrano-ext'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment