forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
351 lines (261 loc) · 10.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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
# frozen_string_literal: true
source "https://rubygems.org"
ruby ">= 2.6.3"
# ===========#
# CORE RAILS #
# ===========#
# Full-stack web application framework. (http://rubyonrails.org)
gem "rails", "~> 5.2"
# Use sqlite3 as the database for Active Record
# gem 'sqlite3', '~> 1.4'
# Use Puma as the app server
gem "puma", group: :puma, require: false
# Use SCSS for stylesheets
gem "sass-rails"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker"
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem "turbolinks"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem "jbuilder"
# Use Redis adapter to run Action Cable in production
# gem "redis", "~> 4.0"
# Use Active Model has_secure_password
# gem "bcrypt", "~> 3.1.7"
# Use Active Storage variant
# gem "image_processing", "~> 1.2"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", require: false
# GEMS ADDED TO HELP HANDLE RAILS MIGRATION FROM 3.x to 4.2
# THESE GEMS HELP SUPPORT DEPRACATED FUNCTIONALITY AND WILL LOSE SUPPORT IN
# FUTURE VERSIONS WE SHOULD CONSIDER BRINGING THE CODE UP TO DATE INSTEAD
# A set of Rails responders to dry up your application
# (http://github.com/plataformatec/responders)
# gem "responders"
# ============== #
# ERROR HANDLING #
# ============== #
# Rollbar-gem is the SDK for Ruby apps and includes support for apps using
# Rails, Sinatra, Rack, plain Ruby, and other frameworks.
gem "rollbar", group: :rollbar, require: false
# ======== #
# DATABASE #
# ======== #
# A simple, fast Mysql library for Ruby, binding to libmysql
# (http://github.com/brianmario/mysql2)
gem "mysql2", group: :mysql, require: false
# Pg is the Ruby interface to the {PostgreSQL
# RDBMS}[http://www.postgresql.org/](https://bitbucket.org/ged/ruby-pg)
gem "pg", group: :pgsql, require: false
# Bit fields for ActiveRecord (https://github.com/pboling/flag_shih_tzu)
gem "flag_shih_tzu" # , "~> 0.3.23"
# ======== #
# SECURITY #
# ======== #
# Flexible authentication solution for Rails with Warden
# (https://github.com/plataformatec/devise)
gem "devise"
# An invitation strategy for Devise (https://github.com/scambra/devise_invitable)
gem "devise_invitable"
# A generalized Rack framework for multiple-provider authentication.
# (https://github.com/omniauth/omniauth)
gem "omniauth"
# OmniAuth Shibboleth strategies for OmniAuth 1.x
gem "omniauth-shibboleth"
# ORCID OAuth 2.0 Strategy for OmniAuth 1.0
# (https://github.com/datacite/omniauth-orcid)
gem "omniauth-orcid"
# This gem provides a mitigation against CVE-2015-9284 (Cross-Site Request
# Forgery on the request phase when using OmniAuth gem with a Ruby on Rails
# application) by implementing a CSRF token verifier that directly uses
# ActionController::RequestForgeryProtection code from Rails.
# https://nvd.nist.gov/vuln/detail/CVE-2015-9284
gem "omniauth-rails_csrf_protection"
# A ruby implementation of the RFC 7519 OAuth JSON Web Token (JWT) standard.
gem "jwt"
# Gems for repository integration
# OO authorization for Rails (https://github.com/elabs/pundit)
gem "pundit"
# ========== #
# UI / VIEWS #
# ========== #
# Ruby gem to handle settings for ActiveRecord instances by storing them as
# serialized Hash in a separate database table. Namespaces and defaults
# included. (https://github.com/ledermann/rails-settings)
gem "ledermann-rails-settings"
# Gem providing simple Contact Us functionality with a Rails 3+ Engine.
# (https://github.com/jdutil/contact_us)
gem "contact_us" # COULD BE EASILY REPLACED WITH OUR OWN CODE
# Helpers for the reCAPTCHA API (http://github.com/ambethia/recaptcha)
gem "recaptcha"
# Ideal gem for handling attachments in Rails, Sinatra and Rack applications.
# (http://github.com/markevans/dragonfly)
gem "dragonfly"
group :aws do
# Amazon AWS S3 data store for use with the Dragonfly gem.
gem "dragonfly-s3_data_store"
end
# ========== #
# PAGINATION #
# ========== #
# A pagination engine plugin for Rails 4+ and other modern frameworks
# (https://github.com/kaminari/kaminari)
gem "kaminari"
# Paginate in your headers, not in your response body. This follows the
# proposed RFC-8288 standard for Web linking.
gem "api-pagination"
# =========== #
# STYLESHEETS #
# =========== #
# Integrate SassC-Ruby into Rails. (https://github.com/sass/sassc-rails)
gem "sassc-rails"
# Font-Awesome SASS (https://github.com/FortAwesome/font-awesome-sass)
gem "font-awesome-sass", "~> 5.13.0"
# Use webpack to manage app-like JavaScript modules in Rails
# (https://github.com/rails/webpacker)
# gem "webpacker"
# Parse CSS and add vendor prefixes to CSS rules using values from the Can
# I Use website. (https://github.com/ai/autoprefixer-rails)
gem "autoprefixer-rails"
# Minimal embedded v8 for Ruby (https://github.com/discourse/mini_racer)
# gem "mini_racer"
# ========= #
# EXPORTING #
# ========= #
# Provides binaries for WKHTMLTOPDF project in an easily accessible package.
gem "wkhtmltopdf-binary"
# PDF generator (from HTML) gem for Ruby on Rails
# (https://github.com/mileszs/wicked_pdf)
gem "wicked_pdf"
# This simple gem allows you to create MS Word docx documents from simple
# html documents. This makes it easy to create dynamic reports and forms
# that can be downloaded by your users as simple MS Word docx files.
# (http://github.com/karnov/htmltoword)
gem "htmltoword"
# Filename sanitization for Ruby. This is useful when you generate filenames for
# downloads from user input
gem "zaru"
# ==================== #
# INTERNATIONALIZATION #
# ==================== #
gem "translation"
# ========= #
# UTILITIES #
# ========= #
# Run any code in parallel Processes(> use all CPUs) or Threads(> speedup
# blocking operations). Best suited for map-reduce or e.g. parallel downloads/uploads.
# TODO: Replace use of this with ActiveJob where possible
gem "parallel"
# Makes http fun again! Wrapper to simplify the native Net::HTTP libraries
gem "httparty"
# Autoload dotenv in Rails. (https://github.com/bkeepers/dotenv)
gem "dotenv-rails"
# ================================= #
# ENVIRONMENT SPECIFIC DEPENDENCIES #
# ================================= #
group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem "byebug", platforms: %i[mri mingw x64_mingw]
end
group :test do
# RSpec for Rails (https://github.com/rspec/rspec-rails)
gem "rspec-rails"
# factory_bot_rails provides integration between factory_bot and rails 3
# or newer (http://github.com/thoughtbot/factory_bot_rails)
gem "factory_bot_rails"
# Easily generate fake data (https://github.com/stympy/faker)
gem "faker"
# the instafailing RSpec progress bar formatter
# (https://github.com/thekompanee/fuubar)
gem "fuubar"
# Guard keeps an eye on your file modifications (http://guardgem.org)
gem "guard"
# Guard gem for RSpec (https://github.com/guard/guard-rspec)
gem "guard-rspec"
# Library for stubbing HTTP requests in Ruby.
# (http://github.com/bblimke/webmock)
gem "webmock"
# Code coverage for Ruby 1.9+ with a powerful configuration library and
# automatic merging of coverage across test suites
# (http://github.com/colszowka/simplecov)
gem "simplecov", require: false
# Strategies for cleaning databases. Can be used to ensure a clean state
# for testing. (http://github.com/DatabaseCleaner/database_cleaner)
gem "database_cleaner", require: false
# Making tests easy on the fingers and eyes
# (https://github.com/thoughtbot/shoulda)
gem "shoulda", require: false
# Mocking and stubbing library (http://gofreerange.com/mocha/docs)
gem "mocha", require: false
# Adds support for Capybara system testing and selenium driver
gem "capybara"
gem "selenium-webdriver"
# Easy installation and use of web drivers to run system tests with browsers
gem "webdrivers"
# Automatically create snapshots when Cucumber steps fail with Capybara
# and Rails (http://github.com/mattheworiordan/capybara-screenshot)
gem "capybara-screenshot"
# Browser integration tests are expensive. We can mock external requests
# in our tests, but once a browser is involved, we lose control.
gem "capybara-webmock"
# RSpec::CollectionMatchers lets you express expected outcomes on
# collections of an object in an example.
gem "rspec-collection_matchers"
# A set of RSpec matchers for testing Pundit authorisation policies.
gem "pundit-matchers"
# This gem brings back assigns to your controller tests as well as assert_template
# to both controller and integration tests.
gem "rails-controller-testing"
end
group :ci, :development do
# Security vulnerability scanner for Ruby on Rails.
# (http://brakemanscanner.org)
gem "brakeman"
# Automatic Ruby code style checking tool.
# (https://github.com/rubocop-hq/rubocop)
# Rubocop style checks for DMP Roadmap projects.
# (https://github.com/DMPRoadmap/rubocop-DMP_Roadmap)
gem "rubocop-dmp_roadmap"
# Helper gem to require bundler-audit
# (http://github.com/stewartmckee/bundle-audit)
gem "bundle-audit"
end
group :development do
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "listen"
gem "web-console"
# 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"
# Simple Progress Bar for output to a terminal
# (http://github.com/paul/progress_bar)
gem "progress_bar", require: false
# A collection of text algorithms (http://github.com/threedaymonk/text)
gem "text", require: false
# Better error page for Rails and other Rack apps
# (https://github.com/charliesome/better_errors)
gem "better_errors"
# Retrieve the binding of a method's caller. Can also retrieve bindings
# even further up the stack. (http://github.com/banister/binding_of_caller)
gem "binding_of_caller"
# rspec command for spring
# (https://github.com/jonleighton/spring-commands-rspec)
gem "spring-commands-rspec"
# Profiles loading speed for rack applications. (http://miniprofiler.com)
gem "rack-mini-profiler"
# Annotates Rails Models, routes, fixtures, and others based on the
# database schema. (http://github.com/ctran/annotate_models)
gem "annotate"
# Add comments to your Gemfile with each dependency's description.
# (https://github.com/ivantsepp/annotate_gem)
gem "annotate_gem"
# help to kill N+1 queries and unused eager loading.
# (https://github.com/flyerhzm/bullet)
gem "bullet"
# Documentation tool for consistent and usable documentation in Ruby.
# (http://yardoc.org)
gem "yard"
# TomDoc for YARD (http://rubyworks.github.com/yard-tomdoc)
gem "yard-tomdoc"
end