-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
28 lines (21 loc) · 663 Bytes
/
Gemfile
File metadata and controls
28 lines (21 loc) · 663 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
# Specify your gem's dependencies in immutable_struct_ex.gemspec
gemspec
gem 'bundler', '>= 2.5', '< 3.0'
gem 'rake', '>= 13.0', '< 14.0'
group :development do
gem 'reek', '>= 6.1', '< 7.0'
gem 'rubocop', '>= 1.35', '< 2.0'
gem 'rubocop-performance', '>= 1.14', '< 2.0'
gem 'rubocop-rake', '>= 0.6', '< 1.0'
gem 'rubocop-rspec', '>= 2.12', '< 3.0'
end
group :test do
gem 'rspec', '>= 3.12', '< 4.0'
gem 'simplecov', '>= 0.22.0', '< 1.0'
end
group :development, :test do
gem 'pry-byebug', '>= 3.9', '< 4.0'
end