-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (46 loc) · 1.14 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.0.3"
gem "rails", "~> 7.0.2", ">= 7.0.2.3"
gem "sprockets-rails"
gem "pg", "~> 1.1"
gem "puma", "~> 5.0"
gem "active_storage_validations"
gem "google-cloud-storage", "~>1.11", require: false
gem "turbo-rails", "~>1.0.0"
gem "stimulus-rails"
gem "jsbundling-rails"
gem "jbuilder"
gem "bootstrap"
gem "cssbundling-rails"
gem "sassc-rails"
gem "image_processing"
gem "mini_magick"
gem "bcrypt"
gem "digest"
gem "importmap-rails"
gem "faker"
gem "will_paginate"
gem "bootstrap-will_paginate"
gem "tzinfo-data", platforms: %i[ mingw mswin x64_mingw jruby ]
gem "bootsnap", require: false
group :development, :test do
gem "byebug", platforms: %i[ mri mingw x64_mingw ]
end
group :development do
gem "web-console"
gem "listen"
gem "spring"
gem "spring-watcher-listen"
end
group :test do
# Use system testing [https://guides.rubyonrails.org/testing.html#system-testing]
gem "capybara"
gem "selenium-webdriver"
gem "webdrivers"
gem "rails-controller-testing"
gem "minitest"
gem "minitest-reporters"
gem "guard"
gem "guard-minitest"
end