Skip to content

Commit

Permalink
Fix gemspec.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tony Strauss committed Aug 11, 2011
1 parent 3c097d3 commit 8ddd2e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Expand Up @@ -31,7 +31,7 @@ spec = Gem::Specification.new do |s|
s.add_dependency('rack')
s.add_dependency('toadhopper', '~>2.0.0')
s.require_path = 'lib'
s.files = %w(LICENSE README.md Rakefile TODO) + Dir.glob("{lib,specs}/**/*")
s.files = %w(LICENSE README.md Rakefile TODO) + Dir.glob("{lib,specs}/**/*.rb") + ["#{GEM}.gemspec"]
end

Gem::PackageTask.new(spec) do |pkg|
Expand Down
2 changes: 1 addition & 1 deletion rack_hoptoad.gemspec
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |s|
s.description = %q{A gem that provides hoptoad notifications from rack}
s.email = %q{atmos@atmos.org}
s.extra_rdoc_files = ["LICENSE", "TODO"]
s.files = ["LICENSE", "README.md", "Rakefile", "TODO", "lib/rack", "lib/rack/hoptoad.rb", "lib/rack/hoptoad_version.rb", "lib/rack/hoptoad_version.rb~"]
s.files = ["LICENSE", "README.md", "Rakefile", "TODO", "lib/rack/hoptoad.rb", "lib/rack/hoptoad_version.rb", "rack_hoptoad.gemspec"]
s.homepage = %q{http://github.com/atmos/rack_hoptoad}
s.require_paths = ["lib"]
s.rubygems_version = %q{1.5.0}
Expand Down

0 comments on commit 8ddd2e6

Please sign in to comment.