-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (32 loc) · 881 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) {|repo| "https://github.com/#{repo}.git" }
ruby "3.0.0"
gem "bootsnap", "1.5.1"
gem "brakeman", "~> 5.0.0"
gem "bundler-audit", "~> 0.8.0"
gem "faker", "~> 2.21.0"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 5.6"
gem "rails", "~> 6.0.3"
gem "redis", "~> 4.2.5"
Dir.glob("components/**/*.gemspec") do |gemspec|
path = File.dirname(gemspec)
component = File.basename(path)
gem component, path: path
end
group :development do
gem "listen", ">= 3.0.5", "< 3.4"
gem "spring", "~> 2.1.1"
gem "spring-watcher-listen", "~> 2.0.0"
end
group :development, :test do
gem "dotenv-rails", "~> 2.7.6"
gem "factory_bot_rails", "~> 6.1.0", require: false
gem "rubocop"
end
group :test do
gem "database_cleaner"
gem "rspec-rails", "~> 4.0.1"
gem "shoulda-matchers", "~> 4.4.1"
end