-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathGemfile
35 lines (27 loc) · 1.09 KB
/
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
# -*- ruby -*-
source "https://rubygems.org"
ruby "~> 3.3"
gem "rails", "~> 7.2.0"
gem "bootsnap", "~> 1.11"
gem "devise", "~> 4.8"
gem "rails_admin", "~> 3.0"
gem "rake", "~> 13.0"
gem "unicorn", "~> 6.0"
gem "sprockets", "~> 4.0"
# noise dependencies:
gem "sassc-rails", "~> 2.1" # for rails_admin?
group :production do
gem "pg", "~> 1.0"
end
group :development, :test do
gem "sqlite3", "~> 2.0"
gem "minitest", "~> 5.14"
gem "minitest-rails", "~> 7.1.0"
gem "ZenTest", "~> 4.9", require: false
gem "autotest-rails", "~> 4.2.1", require: false
gem "pry", "~> 0.13", require: false
# this hasn't been updated in a while and is blocking newer versions of pry
# gem "pry-byebug", "~> 3.9", require: false
# gem "fiddle" # for pry-byebug, loaded in dev env
gem "rails-controller-testing", "~> 1.0"
end