-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
36 lines (26 loc) · 1011 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
source "https://rubygems.org"
ruby "3.3.0"
# Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main"
gem "rails", "7.1.3.2"
# Use postgresql as the database for Active Record
gem "pg", "1.5.6"
# Use the Puma web server [https://github.com/puma/puma]
gem "puma", "6.4.2"
# Reduces boot times through caching; required in config/boot.rb
gem "bootsnap", "1.18.3", require: false
# Use Rack CORS for handling Cross-Origin Resource Sharing (CORS), making cross-origin Ajax possible
gem "rack-cors", "2.0.2"
# Projects required load environments before rails load
gem "dotenv-rails", "3.1.0", require: "dotenv/load", groups: %i[development test]
# AuctionFunCore
gem "auction_fun_core", "0.8.10"
# gem "auction_fun_core", path: "../auction_fun_core", require: "auction_fun_core"
group :development, :test do
gem "pry-rails", "0.3.9"
gem "rspec-rails", "6.1.2"
gem "standard", "1.35.1"
end
group :test do
gem "database_cleaner-sequel", "2.0.2"
gem "rom-factory", "0.12.0"
end