tasks/gem.rake in rake-compiler-0.7.0 vs tasks/gem.rake in rake-compiler-0.7.1

- old
+ new

@@ -1,11 +1,11 @@ require 'rubygems/package_task' GEM_SPEC = Gem::Specification.new do |s| # basic information s.name = "rake-compiler" - s.version = "0.7.0" + s.version = "0.7.1" s.platform = Gem::Platform::RUBY # description and details s.summary = 'Rake-based Ruby Extension (C, Java) task generator.' s.description = "Provide a standard and simplified way to build and package\nRuby extensions (C, Java) using Rake as glue." @@ -22,11 +22,11 @@ s.add_development_dependency 'cucumber', '~> 0.4.4' #s.add_development_dependency 'rcov', '~> 0.9.6' # components, files and paths s.files = FileList["features/**/*.{feature,rb}", "bin/rake-compiler", - "lib/**/*.rb", "spec/**/*.rb", "tasks/**/*.rake", - "Rakefile", "*.{rdoc,txt,yml}"] + "lib/**/*.rb", "spec/spec.opts", "spec/**/*.rb", + "tasks/**/*.rake", "Rakefile", "*.{rdoc,txt,yml}"] s.bindir = 'bin' s.executables = ['rake-compiler'] s.require_path = 'lib'