forked from t3-innovation-network/desm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
142 lines (110 loc) · 3.49 KB
/
Gemfile
File metadata and controls
142 lines (110 loc) · 3.49 KB
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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.7"
###
# RUBY & RAILS
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem "rails", "7.2.2"
# The original asset pipeline for Rails [https://github.com/rails/propshaft]
gem "propshaft", "~> 1.1"
## Bundle and transpile JavaScript [https://github.com/rails/jsbundling-rails]
gem "cssbundling-rails", "~> 1.4"
gem "jsbundling-rails"
###
# 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.8"
# 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.3"
# 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.3"
# Use mailgun servers for sending mails
gem "mailgun_rails"
gem "net-imap", require: false
gem "net-pop", require: false
gem "net-smtp", require: false
# 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", ">= 5.0"
# 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 "seedbank", "~> 0.5.0"
# Validate the use of strong passwords
gem "strong_password", "~> 0.0.8"
gem "mimemagic", github: "mimemagicrb/mimemagic", ref: "01f92d86d15d85cfd0f20dabd025dcbd36a8a60f"
gem "with_advisory_lock", "~> 5.3"
gem "zaru", "~> 1.0"
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.69", require: false
gem "rubocop-rails"
# 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.9"
gem "overcommit"
# Let's take advantage of rerun gem for hot-reload in development
gem "rerun"
gem "ruby-lsp"
gem "ruby-lsp-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.1"
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