-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gemfile
111 lines (75 loc) · 1.81 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
source "https://rubygems.org"
gem "rails", '4.1.1'
source 'https://rails-assets.org'
ruby '2.1.1'
# Bower Manager => https://rails-assets.org/
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'uglifier'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
gem 'turbolinks'
# turbolinks support
gem 'jquery-turbolinks'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
# Use unicorn as the app server
gem 'unicorn'
gem 'bootstrap-sass'
# Presenter Layer
#gem 'draper'
# Haml
gem 'haml-rails'
# asset取得系のログを出力しない
gem 'quiet_assets'
# Form Builders
gem 'simple_form'
# 定数管理
#gem 'rails_config'
# プロセス管理
gem 'foreman'
# params 引数化
gem 'action_args'
# HTML5バリデーター
gem 'html5_validators'
# PG/MySQL Log Formatter
gem 'rails-flog'
# Migration Helper
gem 'migrant'
# Pagenation
gem 'kaminari'
gem 'pg'
# NewRelic
#gem 'newrelic_rpm'
group :development do
# erbからhamlに変換
gem 'erb2haml'
end
group :development, :test do
# Rails application preloader
gem 'spring'
# Railsコンソールの多機能版
gem 'pry-rails'
# pryの入力に色付け
gem 'pry-coolline'
# デバッカー
gem 'pry-byebug'
# Pryでの便利コマンド
gem 'pry-doc'
# PryでのSQLの結果を綺麗に表示
gem 'hirb'
gem 'hirb-unicode'
# pryの色付けをしてくれる
gem 'awesome_print'
end
group :test do
# Rspec
gem 'rspec-rails'
# fixtureの代わり
gem "factory_girl_rails"
# テスト環境のテーブルをきれいにする
gem 'database_rewinder'
end
group :production, :staging do
# ログ保存先変更、静的アセット Heroku 向けに調整
gem 'rails_12factor'
end