forked from tomgi/git_stats
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
31 lines (26 loc) · 745 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
# frozen_string_literal: true
source 'https://rubygems.org'
gemspec
gem 'factory_bot', '~> 6.4', '!= 6.4.5'
gem 'rake', '~> 13.0'
gem 'rspec', '~> 3.10'
gem 'simplecov', '~> 0.21'
gem 'simplecov-cobertura', '~> 2.0'
case active_support_version = ENV.fetch('ACTIVE_SUPPORT_VERSION', 'latest')
when 'latest'
gem 'actionview'
gem 'activesupport'
else
gem 'actionview', active_support_version
gem 'activesupport', active_support_version
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.7')
group :lint do
gem 'haml_lint', '~> 0.37'
gem 'rubocop', '~> 1.8'
gem 'rubocop-factory_bot', '~> 2.26'
gem 'rubocop-performance', '~> 1.9'
gem 'rubocop-rake', '~> 0.5'
gem 'rubocop-rspec', '~> 3.2'
end
end