forked from DMPRoadmap/roadmap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
387 lines (289 loc) · 12.1 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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '>= 3.3'
# ===========#
# CORE RAILS #
# ===========#
# Full-stack web application framework. (http://rubyonrails.org)
gem 'rails', '~> 7.2'
# TODO: Remove this once Rails addresses the issue with its dependency on mimemagic. Mimemagic had
# an MIT license but was using some incompatible GPL license code.
# Versions of mimemagic that were yanked: https://rubygems.org/gems/mimemagic/versions
# Analysis of the issue: https://www.theregister.com/2021/03/25/ruby_rails_code/
gem 'mimemagic'
# Use Puma as the app server
gem 'puma', group: :puma, require: false
# Use esbuild, rollup.js, or Webpack to bundle your JavaScript, then deliver it via the asset pipeline in Rails
# Read more: https://github.com/rails/jsbundling-rails
gem 'jsbundling-rails'
# Use Tailwind CSS, Bootstrap, Bulma, PostCSS, or Dart Sass to bundle and process your CSS
# Read more: https://github.com/rails/cssbundling-rails
gem 'cssbundling-rails'
# Turbo gives you the speed of a single-page web application without having to write any JavaScript..
# Read more: https://github.com/hotwired/turbo-rails
# https://github.com/hotwired/turbo-rails/blob/main/UPGRADING.md
gem 'turbo-rails'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
# Propshaft is an asset pipeline library for Rails. Read more: https://github.com/rails/propshaft
gem 'propshaft'
# Use Redis adapter to run Action Cable in production
# A Ruby client that tries to match Redis' API one-to-one, while still providing an idiomatic interface
# (https://github.com/redis/redis-rb)
gem 'redis'
# redis-actionpack provides a session store for ActionPack, specifically for ActionDispatch.
# (https://github.com/redis-store/redis-actionpack)
gem 'redis-actionpack'
# 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
# The ultimate text progress bar library for Ruby!
# (https://github.com/jfelchner/ruby-progressbar)
gem 'ruby-progressbar'
# ============== #
# ERROR HANDLING #
# ============== #
# Rollbar-gem is the SDK for Ruby apps and includes support for apps using
# Rails, Sinatra, Rack, plain Ruby, and other frameworks.
# https://github.com/rollbar/rollbar-gem
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
# https://github.com/toyokazu/omniauth-shibboleth
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'
# Gem for throttling malicious attacks
gem 'rack-attack'
# ========== #
# 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'
# Styling a SVG document with CSS for use on the web is most reliably achieved by
# adding classes to the document and embedding it inline in the HTML.
# (https://github.com/jamesmartin/inline_svg)
gem 'inline_svg'
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.
# https://github.com/davidcelis/api-pagination
gem 'api-pagination'
# =========== #
# STYLESHEETS #
# =========== #
# 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'
# ========= #
# 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'
# ==================== #
# 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'
# JSON Schema validation
gem 'json_schemer'
# JsonPath is a way of addressing elements within a JSON object.
# Similar to xpath of yore, JsonPath lets you traverse a json object
# and manipulate or access it.
gem 'jsonpath'
# gem 'activerecord_json_validator'
# Rswag extends rspec-rails "request specs" with a Swagger-based DSL for describing and testing API operations
# https://github.com/rswag/rswag
gem 'rswag-api'
gem 'rswag-ui'
# TZInfo::Data is the public domain IANA Time Zone Database packaged as a set of Ruby modules for use with TZInfo.
# https://github.com/tzinfo/tzinfo-data
gem 'tzinfo-data'
# ================================= #
# 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 (https://github.com/guard/guard)
gem 'guard'
# Library for stubbing HTTP requests in Ruby.
# (http://github.com/bblimke/webmock)
gem 'webmock'
# 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'
# Easy installation and use of web drivers to run system tests with browsers
gem 'webdrivers'
# 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'
# automating code review
gem 'danger'
end
group :ci, :development do
# Security vulnerability scanner for Ruby on Rails.
# (http://brakemanscanner.org)
gem 'brakeman'
# Helper gem to require bundler-audit
# (http://github.com/stewartmckee/bundle-audit)
gem 'bundle-audit'
# RuboCop is a Ruby code style checking and code formatting tool. It aims to enforce
# the community-driven Ruby Style Guide.
gem 'rubocop'
# RuboCop rules for detecting and autocorrecting undecorated strings for i18n
# (gettext and rails-i18n)
gem 'rubocop-i18n'
# Performance checks by Rubocop
gem 'rubocop-performance', require: false
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
gem 'net-smtp'
# ======================#
# MADMP OPIDOR FEATURES #
# ===================== #
gem 'madmp_opidor', path: 'engines/madmp_opidor' # , git: 'https://github.com/OPIDoR/madmp_opidor.git'
group :build do
# TEMP : fork added support to rails 7.2. Need update when main repo releases a new version
# Git needs to be removed from Dockerfile
gem 'activerecord-nulldb-adapter', git: 'https://github.com/simpl1g/nulldb',
branch: 'activerecord80-support'
end
gem 'graphiql-rails', '~> 1.10'
gem 'graphql', '~> 2.3'
gem 'foreman', '~> 0.88.1'