mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
(maint) Pin rack to 1.x
Rack was updated recently and 2.x requires ruby 2.2 or above. As VMPooler should work in older jruby, we need to be Ruby 1.9.3 compatible. This commit pins the rack gem to 1.x.
This commit is contained in:
parent
e3cda9d743
commit
e399087dc1
1 changed files with 3 additions and 1 deletions
4
Gemfile
4
Gemfile
|
|
@ -7,7 +7,9 @@ else
|
|||
end
|
||||
|
||||
gem 'puma', '>= 3.6.0'
|
||||
gem 'rack', '>= 1.6'
|
||||
# Rack 2.x requires ruby 2.2 or above.
|
||||
# As VMPooler should work in older jruby, we need to be Ruby 1.9.3 compatible.
|
||||
gem 'rack', '~> 1.6'
|
||||
gem 'rake', '>= 10.4'
|
||||
gem 'rbvmomi', '>= 1.8'
|
||||
gem 'redis', '>= 3.2'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue