mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 18:08:42 -05:00
Adds a gemspec file
This commit is contained in:
parent
65fb4c9919
commit
148f92591e
4 changed files with 44 additions and 2 deletions
7
Gemfile
7
Gemfile
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue