-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
26 lines (23 loc) · 693 Bytes
/
Gemfile
File metadata and controls
26 lines (23 loc) · 693 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
# frozen_string_literal: true
source 'https://rubygems.org'
# Specify your gem's dependencies in rack_jwt_aegis.gemspec
gemspec
group :development do
gem 'irb', '~> 1.16'
gem 'minitest', '~> 6.0'
gem 'mocha', '~> 3.0'
gem 'rack-test', '~> 2.2'
gem 'rake', '~> 13.3'
gem 'redcarpet', '~> 3.6'
gem 'rubocop', '~> 1.79'
gem 'rubocop-minitest', '~> 0.38.1'
gem 'rubocop-performance', '~> 1.25'
gem 'rubocop-rake', '~> 0.7.1'
gem 'simplecov', '~> 0.22.0'
gem 'vcr', '~> 6.3'
gem 'yard', '~> 0.9.38'
# Cache adapters for testing
gem 'dalli', '~> 3.0'
gem 'redis', '~> 5.0'
# NOTE: solid_cache requires Rails, so it's tested in Rails integration environments
end