-
Notifications
You must be signed in to change notification settings - Fork 147
/
Gemfile
96 lines (80 loc) · 2 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
source 'https://rubygems.org'
ruby '2.3.0'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.2.6'
gem 'mysql2'
gem 'unicorn'
gem 'haml-rails'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'turbolinks'
# For View
gem 'kaminari'
gem 'oj'
# For Image upload
gem 'carrierwave' # Image uploader
gem 'mini_magick' # resizable image
gem 'fog', require: "fog/aws/storage"
# For Model and AR
gem 'active_type'
gem 'factory_girl_rails'
gem 'enum_help'
gem 'migration_comments'
# gem 'draper'
gem 'devise'
gem 'validates_email_format_of'
gem 'active_model_serializers'#, git: 'git@github.com:rails-api/active_model_serializers.git'
gem "faker"
# For Config
gem 'config'
# For deploy
gem 'bugsnag' # bug tracking
gem 'newrelic_rpm' # performance monitoring
group :development do
# For Deploy
gem 'capistrano'
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-rbenv', require: false
#gem 'capistrano-npm', require: false
gem 'capistrano3-unicorn'
gem 'annotate'
gem 'rails-db-resetup'
gem 'foreman'
# For Lint
gem 'rubocop', require: false
gem 'scss_lint', require: false
# For Debug
gem 'web-console', '~> 2.0'
gem 'listen', '~> 3.0.5'
gem 'better_errors'
gem 'binding_of_caller'
gem 'pry'
gem 'awesome_print'
gem 'hirb'
gem 'hirb-unicode'
gem 'letter_opener'
gem 'rack-mini-profiler'#, require: false
gem 'bullet'
gem 'quiet_assets'
gem 'byebug'
gem 'powder'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
end
group :test do
gem 'rspec'
gem 'rspec-rails'
gem 'launchy'
gem 'database_cleaner'
gem 'capybara'
gem 'timecop'
gem 'poltergeist'
gem "chromedriver-helper"
gem "selenium-webdriver"
gem 'shoulda-matchers'
gem 'webmock'
gem 'vcr'
gem 'spring-commands-rspec'
gem "codeclimate-test-reporter", require: nil
end