Skip to content

Commit

Permalink
Some files missing from the new Rakefile definition
Browse files Browse the repository at this point in the history
  • Loading branch information
weppos committed May 11, 2010
1 parent a483afb commit 360c6c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -58,7 +58,7 @@ spec = Gem::Specification.new do |s|
s.rdoc_options = %w(--main README.rdoc)

# Add any extra files to include in the gem (like your README)
s.files = %w(Rakefile init.rb) + Dir.glob("*.rdoc") + Dir.glob("{test,lib,rails/**/*}")
s.files = %w(Rakefile init.rb) + Dir.glob("*.{rdoc,gemspec}") + Dir.glob("{test,lib,rails}/**/*")
s.require_paths = ["lib"]

# If you want to depend on other gems, add them here, along with any
Expand Down Expand Up @@ -92,7 +92,7 @@ desc "Remove any generated file"
task :clobber => [:clobber_rdoc, :clobber_rcov, :clobber_package]

desc "Package the library and generates the gemspec"
task :package => :gemspec
task :package => [:gemspec]

begin
require "rcov/rcovtask"
Expand Down

0 comments on commit 360c6c3

Please sign in to comment.