vmpooler/Gemfile
Josh Cooper ad0f0107b8 (maint) Add json pessimistic pin
json 2.0.x was released on July 1 and is not compatible with ruby < 2.0.
Since we still support that version, add a pessimistic pin, which is
what we were using prior to July 1.
2016-07-09 00:40:05 -07:00

16 lines
365 B
Ruby

source ENV['GEM_SOURCE'] || 'https://rubygems.org'
gem 'json', '~> 1.8'
gem 'rack', '>= 1.6'
gem 'rake', '>= 10.4'
gem 'rbvmomi', '>= 1.8'
gem 'redis', '>= 3.2'
gem 'sinatra', '>= 1.4'
gem 'net-ldap', '<= 0.12.1' # keep compatibility w/ jruby & mri-1.9.3
# Test deps
group :test do
gem 'rack-test', '>= 0.6'
gem 'rspec', '>= 3.2'
gem 'yarjuf', '>= 2.0'
end