Adds a gemspec file

This commit is contained in:
Corey Osman 2018-06-12 11:44:23 -07:00
parent 65fb4c9919
commit 148f92591e
4 changed files with 44 additions and 2 deletions

View file

@ -1,6 +1,5 @@
source ENV['GEM_SOURCE'] || 'https://rubygems.org'
gem 'json', '>= 1.8'
gem 'puma', '>= 3.6.0'
# 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.
@ -12,7 +11,7 @@ gem 'net-ldap', '>= 0.16.1'
gem 'statsd-ruby', '>= 1.3.0', :require => 'statsd'
gem 'connection_pool', '>= 2.2.1'
gem 'nokogiri', '>= 1.8.2'
gem 'vmpooler', path: './'
# Pin gems against Ruby version
# Note we can't use platform restrictions easily so use
# lowest version range any platform
@ -26,6 +25,10 @@ else
gem 'redis', '>= 3.2'
end
group :development do
gem 'pry'
end
# Test deps
group :test do
gem 'mock_redis', '>= 0.17.0'