From 705906ba3f56ec44959359bf55a14c1d7ade9efe Mon Sep 17 00:00:00 2001 From: Joshua Clayton Date: Sat, 19 Feb 2011 23:30:19 -0500 Subject: [PATCH] Include features within features/engine in the gemspec's files list Diesel looks within features/engine for the generator and needs to be included with the gem for those features to be installed successfully. --- clearance.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clearance.gemspec b/clearance.gemspec index 548db38d2..745bb2ec3 100644 --- a/clearance.gemspec +++ b/clearance.gemspec @@ -15,7 +15,7 @@ Gem::Specification.new do |s| "LICENSE", "README.md" ] - s.files = Dir['[A-Z]*', 'app/**/*', 'config/**/*', 'lib/**/*'] + s.files = Dir['[A-Z]*', 'app/**/*', 'config/**/*', 'lib/**/*', 'features/engine/**/*'] s.test_files = Dir['spec/**/*', 'test/**/*'] s.rdoc_options = ["--charset=UTF-8"]