-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
46 lines (37 loc) · 906 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
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.2.2"
gem "pg", ">= 0.18", "< 2.0"
gem "puma", "~> 6.5"
gem "rails", "~> 7.1.3"
gem "jbuilder", "~> 2.13"
gem "active_median"
gem "bootsnap", ">= 1.4.2", require: false
gem "rack-cors", require: "rack/cors"
gem "yt"
gem "dotenv"
gem "scout_apm"
gem "rollbar"
gem "watir"
group :development, :test do
gem "brakeman", ">=5.2.1", require: false
gem "faker"
gem "pry-byebug"
gem "factory_bot_rails"
gem "rspec-rails"
gem "rubocop", require: false
gem "rubocop-performance"
gem "rubocop-rails"
gem "rubocop-rake"
gem "rubocop-rspec"
end
group :test do
gem "shoulda-matchers"
end
group :development do
gem "listen", "~> 3.9"
gem "spring"
gem "spring-watcher-listen", "~> 2.1.0"
end
gem "tzinfo-data", platforms: %i[mingw mswin x64_mingw jruby]