-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathGemfile
44 lines (36 loc) · 909 Bytes
/
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
source 'https://rubygems.org'
ruby file: '.ruby-version'
gem 'pg', '~> 1.5'
gem 'puma', '~> 6.4'
gem 'rails', '>= 7.0.4.3', '< 9'
gem 'tzinfo-data'
# Protects against GHSA-vr8q-g5c7-m54m
# https://github.com/sparklemotion/nokogiri/security/advisories/GHSA-vr8q-g5c7-m54m
gem 'nokogiri', '>= 1.11.0.rc4'
gem 'httparty'
group :production do
gem 'rails_12factor'
end
group :development do
gem 'listen'
gem 'solargraph'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.1.0'
end
group :development, :test do
gem 'brakeman', require: false
gem 'colored', require: false
gem 'pry-byebug', platform: :mri
gem 'rake'
gem 'rubocop', '~> 1.72.2', require: false
end
group :test do
gem 'coveralls_reborn', require: false
gem 'database_cleaner'
gem 'factory_bot_rails'
gem 'rspec'
gem 'rspec-expectations'
gem 'rspec-rails'
gem 'shoulda-matchers'
end