Last active
February 21, 2016 14:41
-
-
Save ya-s-u/4897bc1c92f5e9f9cfb3 to your computer and use it in GitHub Desktop.
BeeAppを支える技術
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
ruby '2.2.3' | |
source 'https://rubygems.org' | |
#source 'https://rails-assets.org' do | |
# gem 'rails-assets-vue' | |
#end | |
gem 'rails', '4.1.7' | |
gem 'grape' | |
gem 'kaminari' | |
gem 'counter_culture' | |
# HTTP server | |
gem 'unicorn' | |
# responce | |
gem 'yajl-ruby' | |
gem 'grape-jbuilder' | |
# auth | |
gem 'devise' | |
gem "koala" | |
# security | |
gem 'bcrypt', '~> 3.1.7' | |
# admin | |
gem 'activeadmin', '~> 1.0.0.pre1' | |
gem 'ckeditor' | |
# assets | |
gem 'uglifier', '>= 1.3.0' | |
gem 'paperclip' | |
gem 'panda', '~> 1.6.0' | |
# db | |
gem 'pg' | |
gem 'mysql2' | |
gem 'redis' | |
# storage | |
gem 'aws-sdk' | |
# frontend | |
gem 'jpmobile' | |
gem 'meta-tags' | |
# task | |
gem 'google_drive' | |
gem 'twitter' | |
gem 'anemone' | |
gem 'nokogiri' | |
# cache | |
gem 'dalli' | |
group :development, :test do | |
gem 'spring' | |
gem 'rails-erd' | |
gem 'json_expressions' | |
gem 'rspec-rails' | |
gem 'better_errors' | |
gem 'binding_of_caller' | |
gem 'byebug' | |
gem 'bullet' | |
gem 'quiet_assets' | |
gem 'rack-mini-profiler' | |
end | |
group :production do | |
gem 'rails_12factor' | |
gem 'newrelic_rpm' | |
gem 'asset_sync' | |
gem 'google-analytics-rails' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment