-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
33 lines (24 loc) · 938 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
source "https://rubygems.org"
ruby "3.3.2"
gemspec
gem "jsonapi-resources", "~> 0.1"
# # The original asset pipeline for Rails [https://github.com/rails/sprockets-rails]
gem "sprockets-rails"
# Use postgresql as the database for Active Record
gem "pg", "~> 1.5"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", ">= 5.0"
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:windows, :jruby]
group :development, :test do
# See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem
gem "debug", platforms: [:mri, :windows]
end
group :development do
gem "rubocop", "~> 1.68", require: false
gem "rubocop-ast", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "rubocop-rspec", require: false
gem "rubocop-shopify", "~> 2.15", ">= 2.15.1", require: false
end