From 3362d722b6869d5d7cea0e479392cf32d4084ed9 Mon Sep 17 00:00:00 2001 From: Tim Smith Date: Mon, 24 Aug 2026 07:29:39 -0700 Subject: [PATCH] chore: move development dependencies to the Gemfile Development dependencies belong in the Gemfile, not the gemspec. Declaring them in the gemspec ships them as real metadata to every consumer and duplicates constraints already expressed in the Gemfile. Signed-off-by: Tim Smith --- Gemfile | 1 + kitchen-cloudstack.gemspec | 5 ----- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/Gemfile b/Gemfile index e37d12e..c98a562 100644 --- a/Gemfile +++ b/Gemfile @@ -11,4 +11,5 @@ end group :test do gem "rake" + gem "rspec" end diff --git a/kitchen-cloudstack.gemspec b/kitchen-cloudstack.gemspec index e14a9de..f8d1f5b 100644 --- a/kitchen-cloudstack.gemspec +++ b/kitchen-cloudstack.gemspec @@ -26,9 +26,4 @@ Gem::Specification.new do |spec| spec.add_dependency "test-kitchen", ">= 3.0", "< 5" spec.add_dependency "fog-cloudstack", "~> 0.1.0" - - spec.add_development_dependency "rake" - spec.add_development_dependency "rspec" - - spec.add_development_dependency "pry" end