summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-12-06 14:54:37 -0800
committerTim Smith <tsmith@chef.io>2018-12-06 14:57:30 -0800
commitc3251e5b7153e64b47a0a6af980d05f8f291b9a3 (patch)
treecd7e0d452536d96fabf416f9916142ed5b923db5
parentd04c2d85cd7355a91203efc2f5fc0f44af45dbd7 (diff)
downloadmixlib-shellout-c3251e5b7153e64b47a0a6af980d05f8f291b9a3.tar.gz
Remove dev deps from the gemspec
These are all in the gemfile now Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--Gemfile1
-rw-r--r--mixlib-shellout.gemspec6
2 files changed, 2 insertions, 5 deletions
diff --git a/Gemfile b/Gemfile
index 609a5f4..5aaba73 100644
--- a/Gemfile
+++ b/Gemfile
@@ -5,6 +5,7 @@ gemspec name: "mixlib-shellout"
group(:test) do
gem "chefstyle", git: "https://github.com/chef/chefstyle.git", branch: "master"
gem "rspec_junit_formatter"
+ gem "rspec", "~> 3.0"
gem "rake"
end
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec
index 84ae88e..0c099b1 100644
--- a/mixlib-shellout.gemspec
+++ b/mixlib-shellout.gemspec
@@ -14,10 +14,6 @@ Gem::Specification.new do |s|
s.required_ruby_version = ">= 2.2"
- s.add_development_dependency "rspec", "~> 3.0"
- s.add_development_dependency "chefstyle"
-
s.require_path = "lib"
- s.files = %w{LICENSE} +
- Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
+ s.files = %w{LICENSE} + Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject { |f| File.directory?(f) }
end