-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
37 lines (29 loc) · 893 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
# rubocop:disable Captive/Translation/RailsI18nPresence
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
# Specify your gem's dependencies in captive-sdk.gemspec.
gemspec
gem "rails", "~> 7.1.0"
gem "puma", "~> 6.6.0"
gem "sqlite3", "~> 1.7.0"
gem "pg", "~> 1.5.3"
# Start debugger with binding.b [https://github.com/ruby/debug]
# gem "debug", ">= 1.0.0"
gem "sprockets-rails", "~> 3.5.0"
gem "jwt", "~> 2.8.0"
group :development do
gem "yard", "~> 0.9.34"
gem "rails-erd", "~> 1.7.2"
end
group :test do
gem "rspec", "~> 3.13.0"
gem "rspec-mocks", "~> 3.13.0"
gem "rspec-rails", "~> 6.1.0"
gem "factory_bot_rails", "~> 6.4.0"
gem "webmock", "~> 3.25.0"
gem "shoulda-matchers", "~> 6.4.0"
end
group :development, :test do
gem "rubocop-config-captive", "~> 1.16.0"
end
# rubocop:enable Captive/Translation/RailsI18nPresence