-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathGemfile
140 lines (107 loc) · 3.42 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
###
# RUBY & RAILS
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "= 6.1.6.1"
###
###
# AUTHENTICATION TOOLS
gem "bcrypt", "~> 3.1", ">= 3.1.15"
gem "rack-cors", require: "rack/cors"
###
###
# REST OF THE DEPENDENCIES
gem "active_model_serializers", "~> 0.10"
gem "airbrake"
# Audit changes
gem "audited", "~> 5.6"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", ">= 1.4.2", require: false
# For http requests
gem "httparty"
gem "i18n-js", "~> 4.2"
gem "interactor-rails", "~> 2.0"
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
# gem "jbuilder", "~> 2.7"
gem "json_schema_tools", "~> 0.6"
gem "json-schema"
# Deal with sensitive data (encoding/decoding)
gem "jwt"
# Work with RDF data in various formats
gem "linkeddata", "~> 3.1"
# Use mailgun servers for sending mails
gem "mailgun_rails"
gem "net-smtp", require: false
# Allow redirections in URI.open
gem "open_uri_redirections", "~> 0.2"
# Use postgresql as the database for Active Record
gem "pg", ">= 0.18", "< 2.0"
gem "pg_search", "~> 2.3"
# Use Puma as the app server
gem "puma", "~> 4.1"
# Manage authorization
gem "pundit"
# Centralize access to tasks
gem "rake"
# A Ruby client library for Redis
gem "redis"
gem "rubyzip", "~> 2.3", require: "zip"
# Simplify seeding
gem "seed-fu"
# Validate the use of strong passwords
gem "strong_password", "~> 0.0.8"
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem "turbolinks", "~> 5"
# Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker
gem "webpacker", "~> 5.x"
gem "mimemagic", github: "mimemagicrb/mimemagic", ref: "01f92d86d15d85cfd0f20dabd025dcbd36a8a60f"
group :development, :test do
gem "annotate"
gem "brakeman", require: false
gem "bullet"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "capybara"
gem "database_cleaner"
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: %i[mri mingw x64_mingw]
# Load env variables in dev & test modes
gem "dotenv-rails", "~> 2.7"
gem "factory_bot_rails"
gem "faker"
gem "rspec-rails"
# Use rubocop to ensure our code is clean
gem "rubocop", "~> 1.60", require: false
# Disable rubocop for specs for now, too many offenses
# gem "rubocop-rspec", require: false
gem "shoulda-matchers"
gem "traceroute"
gem "vcr", "~> 6.2"
gem "webmock", "~> 3.23"
end
group :development do
gem "htmlbeautifier"
gem "rails-erd"
# Access an interactive console on exception pages or by calling 'console' anywhere in the code.
gem "listen", "~> 3.2"
gem "overcommit"
# Let's take advantage of rerun gem for hot-reload in development
gem "rerun"
gem "solargraph"
gem "solargraph-rails"
# 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"
gem "web-console", ">= 3.3.0"
end
group :test do
gem "simplecov", require: false
gem "timecop"
# profiling, check https://test-prof.evilmartians.io/
gem "ruby-prof", ">= 0.17.0", require: false
gem "stackprof", ">= 0.2.9", require: false
gem "test-prof"
gem "vernier", ">= 0.3.0", require: false
end