forked from ministryofjustice/fb-service-token-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
30 lines (24 loc) · 735 Bytes
/
Gemfile
File metadata and controls
30 lines (24 loc) · 735 Bytes
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby File.read('.ruby-version').chomp
gem 'bootsnap', '>= 1.1.0', require: false
gem 'rails', '~> 7.0.6'
gem 'puma', '~> 6.4'
gem 'redis', '~> 5.0'
gem 'sentry-rails', '~> 5.14'
gem 'sentry-ruby', '~> 5.14'
gem 'jwt'
group :development, :test do
gem 'dotenv', require: 'dotenv/load'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '>= 3.5.0'
end
group :development do
gem 'listen'
end
group :test do
gem 'simplecov'
gem 'simplecov-console', require: false
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]