-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathGemfile
79 lines (68 loc) · 1.6 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
source 'https://rubygems.org'
gem 'rails'
# Use unicorn as the web server
gem 'puma'
gem 'mysql2'
gem 'rubyzip'
gem 'zip-zip'
gem 'andand'
gem 'newrelic_rpm'
gem 'will_paginate-bootstrap'
gem 'rubystats'
gem 'dynamic_form'
gem 'rprocfs'
gem 'dalli'
gem 'connection_pool'
gem 'utf8-cleaner'
gem 'coderay'
gem 'pundit'
gem 'codemirror-rails'
gem 'bootstrap-sass'
gem 'highcharts-rails'
gem 'gon'
gem 'js_cookie_rails'
gem 'sass-rails'
gem 'draper'
gem 'sidekiq'
group :production do
gem 'SyslogLogger'
gem "aws-sdk-s3", require: false
end
group :development do
gem 'spring'
gem "spring-commands-rspec"
gem 'sprockets-rails'
gem 'uglifier', '>= 1.0.3'
# Deploy with
gem 'capistrano'
gem 'capistrano3-puma'
gem 'capistrano-rvm'
gem 'capistrano-rails'
gem 'capistrano-bundler'
gem 'capistrano-db-tasks', require: false
gem 'capistrano-sidekiq', github: 'seuros/capistrano-sidekiq'
end
group :test do
gem 'rails-controller-testing'
gem 'rspec-rails', '~> 4.0.0'
gem 'shoulda-matchers'
gem 'factory_bot_rails'
gem 'mocha', :require => 'mocha/api'
gem 'capybara'
gem 'database_cleaner'
gem 'cucumber-rails', :require => false
end
gem 'jquery-rails'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug19'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end