From fa5aa8d0beb1b14a9b64f2e7f8461446c68c212c Mon Sep 17 00:00:00 2001 From: "kirby@puppetlabs.com" Date: Fri, 25 Oct 2019 09:00:01 -0700 Subject: [PATCH] Add spicy-proton to vmpooler.gemspec This commit adds the spicy-proton gem to vmpooler.gemspec. Without this change the spicy-proton gem is in the Gemfile, but not the gemspec, causing issues when deploying from gem. --- Gemfile | 2 +- vmpooler.gemspec | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 11def9f..43046e4 100644 --- a/Gemfile +++ b/Gemfile @@ -12,7 +12,7 @@ gem 'net-ldap', '~> 0.16' gem 'statsd-ruby', '~> 1.4.0', :require => 'statsd' gem 'connection_pool', '~> 2.2' gem 'nokogiri', '~> 1.8' -gem 'spicy-proton', '2.1.1' +gem 'spicy-proton', '~> 2.1' group :development do gem 'pry' diff --git a/vmpooler.gemspec b/vmpooler.gemspec index c8b0433..596218f 100644 --- a/vmpooler.gemspec +++ b/vmpooler.gemspec @@ -28,4 +28,5 @@ Gem::Specification.new do |s| s.add_dependency 'statsd-ruby', '~> 1.4' s.add_dependency 'connection_pool', '~> 2.2' s.add_dependency 'nokogiri', '~> 1.8' + s.add_dependency 'spicy-proton', '~> 2.1' end