summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:40:53 -0400
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:40:53 -0400
commitb73142aba2c4c6699b7b951018675a39c0e344b2 (patch)
treeab210f5ca9f554cde2006a4fa617300d86cdf787
parent126f9e5081504136ba51d1bd907b0f0692d43a39 (diff)
downloadmixlib-authentication-b73142aba2c4c6699b7b951018675a39c0e344b2.tar.gz
Add gemspec files to allow bundler to run from the gem
-rw-r--r--mixlib-authentication.gemspec3
1 files changed, 2 insertions, 1 deletions
diff --git a/mixlib-authentication.gemspec b/mixlib-authentication.gemspec
index afb6930..7d9f038 100644
--- a/mixlib-authentication.gemspec
+++ b/mixlib-authentication.gemspec
@@ -16,6 +16,7 @@ Gem::Specification.new do |s|
s.add_dependency "mixlib-log"
s.require_path = 'lib'
- s.files = %w(LICENSE README.rdoc Gemfile Rakefile NOTICE) + Dir.glob("{lib,spec}/**/*")
+ s.files = %w(LICENSE README.rdoc Gemfile Rakefile NOTICE) + Dir.glob("*.gemspec") +
+ Dir.glob("{lib,spec}/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
end