summaryrefslogtreecommitdiff
path: root/mixlib-shellout.gemspec
diff options
context:
space:
mode:
authorKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:37:10 -0400
committerKartik Null Cating-Subramanian <ksubramanian@chef.io>2015-10-09 12:37:10 -0400
commit67a4107b1e05e87d08ef05e19c697d780553cf25 (patch)
treee7c09fa5212b3c0a7ab08eb4c2889ce9684ce324 /mixlib-shellout.gemspec
parent5751c83e7903bc872145ac865fbd696945add2a3 (diff)
downloadmixlib-shellout-67a4107b1e05e87d08ef05e19c697d780553cf25.tar.gz
Add gemspec files to allow bundler to run from the gem
Diffstat (limited to 'mixlib-shellout.gemspec')
-rw-r--r--mixlib-shellout.gemspec3
1 files changed, 2 insertions, 1 deletions
diff --git a/mixlib-shellout.gemspec b/mixlib-shellout.gemspec
index c0bb327..e406c74 100644
--- a/mixlib-shellout.gemspec
+++ b/mixlib-shellout.gemspec
@@ -19,5 +19,6 @@ Gem::Specification.new do |s|
s.bindir = "bin"
s.executables = []
s.require_path = 'lib'
- s.files = %w(Gemfile Rakefile LICENSE README.md) + Dir.glob("lib/**/*")
+ s.files = %w(Gemfile Rakefile LICENSE README.md) + Dir.glob("*.gemspec") +
+ Dir.glob("lib/**/*", File::FNM_DOTMATCH).reject {|f| File.directory?(f) }
end