Rakefile in nanoc-1.0.1 vs Rakefile in nanoc-1.1

- old
+ new

@@ -8,18 +8,18 @@ ##### NAME = 'nanoc' VERS = Nanoc::VERSION -SUMMARY = 'a CMS that doesn\'t even run on your server' +SUMMARY = 'a CMS that doesn\'t run on your server' HOMEPAGE = 'http://stoneship.org/software/nanoc' EMAIL = 'denis.defreyne@stoneship.org' ##### -CLEAN.include [ '*.gem', 'pkg', 'tmp' ] +CLEAN.include [ '*.gem', 'pkg', 'tmp', 'test/fixtures/*/output/*' ] spec = Gem::Specification.new do |s| s.name = NAME s.version = VERS s.platform = Gem::Platform::RUBY @@ -30,10 +30,10 @@ s.add_dependency('erubis') s.required_ruby_version = '>= 1.8.2' s.has_rdoc = false - s.files = %w( README LICENSE Rakefile ) + Dir.glob('{bin,lib,test}/**/*') + s.files = %w( README LICENSE Rakefile ) + Dir.glob('{bin,lib}/**/*') s.executables = [ 'nanoc' ] s.require_path = 'lib' s.bindir = 'bin' end