-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathGemfile
186 lines (151 loc) · 4.7 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.0.5'#, '>= 5.0.0.1'
# Use Puma as the app server
gem 'puma', '~> 3.0'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'therubyracer', platforms: :ruby
gem 'rake', '12.1.0'
gem 'cancancan'
gem 'devise'
gem 'omniauth'
gem 'omniauth-facebook'
gem 'omniauth-twitter'
gem 'omniauth-google-oauth2'
gem 'bootstrap', '~> 4.0.0.alpha5'
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.3.3'
end
gem 'roar-jsonapi'
# postgresql database adatper
gem 'pg'
#pretty layout for console
gem 'hirb'
gem 'wicked_pdf'
gem 'wkhtmltopdf-heroku'
gem 'wkhtmltopdf-binary-edge', '~> 0.12.4.0'
# NOTE(aguestuser|27 Apr 2018)
# these ide debugger gems break ruby 2.5.1 installs
# commenting them until we can figure out how to successfully
# upgrade to ruby 2.5.1, rails 5.2.0
#gem 'ruby-debug-ide'
#gem 'rdebug-ide'
#gem 'debase'
# This is an optional gem. When included, GraphQL will use a parser written in C
# instead of the Ruby parser shipped with graphql-ruby.
#gem 'graphql-libgraphqlparser', '~> 0.2'
# Asset compilation and NPM modules
gem 'browserify-rails'
gem 'geokit-rails'
gem 'active_model_serializers'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails', '~> 5.0.4'
#disabling because we're using react
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
#gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
gem 'roar'
gem 'react_on_rails', '~> 6.8.0'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 3.0'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development
#gem "administrate", "~> 0.3.0"
gem 'activeadmin', '~> 1.0.0.pre4'
gem 'inherited_resources', github: 'activeadmin/inherited_resources'
gem 'kaminari'
gem 'doorkeeper', ">= 4.3.1" # vuln pin
gem 'httparty'
gem 'acts-as-taggable-on', '~> 4.0'
gem 'paper_trail'
gem 'derailed'
gem 'memory_profiler'
gem 'resque'
gem 'hiredis'
gem 'redis'
gem 'resque-scheduler'
gem 'rb-fsevent', '~> 0.10.2'
gem 'arel-helpers'
gem 'koala'
gem 'cocoon'
gem 'nokogiri'
gem 'google-api-client', '~> 0.10.3'
gem 'googleauth'
# memory profiling
gem 'scout_apm'
# crypto
gem 'rbnacl-libsodium'
# factories
# - included here so we can use them on staging
# - eg: rake qa:gen_big_subgroup
gem 'factory_bot_rails'
gem 'faker'
# Excel / Spreadsheet Export
gem 'axlsx_rails'
gem 'zip-zip'
# heroku memory monitor / worker restarter
gem 'whacamole'
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'dotenv-rails'
gem 'byebug', platform: :mri
gem 'awesome_print'
gem 'pry' # for debugging, robe console, etc...
gem 'dotenv'
gem 'pry-remote'
end
group :development do
gem 'foreman'
# Access an IRB console on exception pages or by using <%= console %> anywhere in the code.
gem 'web-console'
#gem 'listen'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
#############
# profiling #
#############
# lightweight profiling tool: https://github.com/MiniProfiler/rack-mini-profiler
# miniprofiler is GREAT, but it appears to cause our action network sync
# (and thus seed:db) to fail. commenting out for now, investigating later
gem 'rack-mini-profiler'
# For memory profiling
gem 'memory_profiler'
# For call-stack profiling flamegraphs
gem 'flamegraph'
gem 'stackprof'
# until 4.7.3, we need develop branch b/c: https://github.com/ctran/annotate_models/pull/514
gem 'annotate', git: 'https://github.com/ctran/annotate_models.git', branch: "develop"
gem 'guard'
gem 'guard-minitest'
end
group :test do
gem 'rails-controller-testing'
gem 'webmock'
gem 'minitest', '~> 5.10.3'
gem 'minitest-spec-rails'
gem 'minitest-matchers'
gem 'minitest-focus'
gem 'valid_attribute'
gem 'minitest-rails-capybara'
gem 'rspec-mocks'
gem 'selenium-webdriver'
gem 'launchy'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
ruby ">=2.3.3"
gem 'mini_racer', platforms: :ruby
source 'https://rails-assets.org' do
gem 'rails-assets-tether', '>= 1.3.3'
end