-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (39 loc) · 758 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.1.2"
gem "activeadmin"
gem "bcrypt", "~> 3.1.7"
gem "bootsnap", require: false
gem "devise"
gem "faraday"
gem "hiredis"
gem "jbuilder"
gem "puma", "~> 5.6", ">= 5.6.5"
gem "lograge"
gem "pg"
gem "rails", "~> 7.0.4"
gem "sassc-rails"
gem "sentry-ruby"
gem "sentry-rails"
gem "slim"
gem "sprockets-rails"
group :development do
gem "standard"
gem "web-console"
end
group :development, :test do
gem "byebug"
gem "debug"
gem "pry"
gem "pry-rails"
gem "spring"
end
group :test do
gem "database_cleaner"
gem "factory_bot_rails"
gem "ffaker"
gem "rspec-rails"
gem "simplecov"
gem "shoulda-matchers"
gem "webmock"
end