7
7
gem 'rgen'
8
8
gem 'redcarpet'
9
9
gem 'yard' , '~> 0.9.11'
10
+ gem 'minitest' , '~> 5.15.0' # last release that supports Ruby 2.3.0
11
+ gem 'public_suffix' , '~> 4.0.7' # last release that supports Ruby 2.3.0
12
+ gem 'console' , '~> 1.8.2' # last release that supports Ruby 2.3.0
13
+ gem 'nio4r' , '= 2.5.2' # last release that supports Ruby 2.3.0
14
+ gem 'protocol-http' , '= 0.13.0' # last release that supports Ruby 2.3.0
15
+ gem 'activesupport' , '>= 5.2.8.1' , '< 6.0.0' # last release that supports Ruby 2.3.0
16
+ gem 'faraday' , '~> 1.0.1' # last release that supports Ruby 2.3.0
17
+ gem 'faraday-http-cache' , '~> 2.2.0'
18
+ gem 'async' , '~> 1.24.2' # last release that supports Ruby 2.3.0
19
+ gem 'byebug' , '~> 11.0.1' # last release that supports Ruby 2.3.0
20
+ gem 'docile' , '~> 1.3.5' # last release that supports Ruby 2.3.0
21
+ gem 'simplecov-html' , '~> 0.10.2'
22
+ gem 'fast_gettext' , '<= 2.0.2'
23
+ gem 'parallel' , '~> 1.19.2'
24
+ gem 'pathspec' , '~> 0.2.1'
25
+ gem 'puppet-syntax' , '~> 2.6.1'
26
+
27
+
10
28
11
29
if ENV [ 'PUPPET_GEM_VERSION' ]
12
30
gem 'puppet' , ENV [ 'PUPPET_GEM_VERSION' ] , :require => false
15
33
end
16
34
17
35
group :test do
18
- gem 'codecov'
36
+ gem 'codecov' , '= 0.2.5' # last release that supports Ruby 2.3.0
19
37
gem 'mocha'
20
- gem 'puppetlabs_spec_helper'
38
+ gem 'puppetlabs_spec_helper' , '~> 3.0.0' # last release that supports Ruby 2.3.0
21
39
gem 'serverspec'
22
40
gem 'simplecov-console'
23
41
gem 'rspec' , '~> 3.1'
@@ -34,14 +52,14 @@ group :acceptance do
34
52
end
35
53
36
54
group :development do
37
- gem 'github_changelog_generator' , '~> 1.15' if Gem ::Version . new ( RUBY_VERSION . dup ) >= Gem ::Version . new ( '2.3.0' )
55
+ gem 'github_changelog_generator' , '~> 1.15' if Gem ::Version . new ( RUBY_VERSION . dup ) > Gem ::Version . new ( '2.3.0' )
38
56
gem 'pry'
39
- gem 'pry-byebug'
57
+ gem 'pry-byebug' , '~> 3.7.0' # last release that supports Ruby 2.3.0
40
58
end
41
59
42
60
gem 'rubocop' , '~> 0.81.0' # last release that supports Ruby 2.3.0
43
- gem 'rubocop-rspec'
44
- gem 'rubocop-performance'
61
+ gem 'rubocop-rspec' , '~> 1.38.1' # last release that supports Ruby 2.3.0
62
+ gem 'rubocop-performance' , '~> 1.5.2' # last release that supports Ruby 2.3.0
45
63
46
64
# Evaluate Gemfile.local if it exists
47
65
if File . exists? "#{ __FILE__ } .local"
0 commit comments