summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:44:20 -0400
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 15:16:28 -0400
commit9d7ddc7dd1fb752b1b318a25d5722cea0dda88d2 (patch)
tree095bb7dcc7cd6c7b793d6f1d43e90f5b3624cb04
parentcd59349fb0103e3a8c0b9d80adae82a370a0632f (diff)
downloadmixlib-config-9d7ddc7dd1fb752b1b318a25d5722cea0dda88d2.tar.gz
Add gemspec files to allow bundler to run from the gemksubrama/gemspec
-rw-r--r--mixlib-config.gemspec3
1 files changed, 2 insertions, 1 deletions
diff --git a/mixlib-config.gemspec b/mixlib-config.gemspec
index c8af4e5..c1a2cfa 100644
--- a/mixlib-config.gemspec
+++ b/mixlib-config.gemspec
@@ -14,7 +14,8 @@ Gem::Specification.new do |s|
"LICENSE",
"README.md"
]
- s.files = [ "LICENSE", "NOTICE", "README.md", "Gemfile", "Rakefile" ] + Dir.glob("{lib,spec}/**/*")
+ s.files = [ "LICENSE", "NOTICE", "README.md", "Gemfile", "Rakefile" ] + Dir.glob("*.gemspec") +
+ Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
s.homepage = "http://www.chef.io"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.23"