summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-12-06 15:02:36 -0800
committerGitHub <noreply@github.com>2018-12-06 15:02:36 -0800
commit871e66b290dc41a0f4da3ac2b948a9c8f564048f (patch)
tree9a93262a42148196a6d9563ab5af56b0004a734a
parent4835bdfcd1b2666ad4606856904170e1efd6d892 (diff)
parentc3251e5b7153e64b47a0a6af980d05f8f291b9a3 (diff)
downloadmixlib-shellout-871e66b290dc41a0f4da3ac2b948a9c8f564048f.tar.gz
Merge pull request #171 from chef/dev_deps
Remove dev deps from the gemspec
-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