Skip to content

Commit 53fd169

Browse files
committed
WIP kludge get dependencies working with Ruby 2.3.0
1 parent 9c437cf commit 53fd169

File tree

1 file changed

+24
-6
lines changed

1 file changed

+24
-6
lines changed

Gemfile

+24-6
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,24 @@ gemspec
77
gem 'rgen'
88
gem 'redcarpet'
99
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+
1028

1129
if ENV['PUPPET_GEM_VERSION']
1230
gem 'puppet', ENV['PUPPET_GEM_VERSION'], :require => false
@@ -15,9 +33,9 @@ else
1533
end
1634

1735
group :test do
18-
gem 'codecov'
36+
gem 'codecov', '= 0.2.5' # last release that supports Ruby 2.3.0
1937
gem 'mocha'
20-
gem 'puppetlabs_spec_helper'
38+
gem 'puppetlabs_spec_helper', '~> 3.0.0' # last release that supports Ruby 2.3.0
2139
gem 'serverspec'
2240
gem 'simplecov-console'
2341
gem 'rspec', '~> 3.1'
@@ -34,14 +52,14 @@ group :acceptance do
3452
end
3553

3654
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')
3856
gem 'pry'
39-
gem 'pry-byebug'
57+
gem 'pry-byebug', '~> 3.7.0' # last release that supports Ruby 2.3.0
4058
end
4159

4260
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
4563

4664
# Evaluate Gemfile.local if it exists
4765
if File.exists? "#{__FILE__}.local"

0 commit comments

Comments
 (0)