Skip to content

Commit

Permalink
remove git dependency from generating gemspec file. causes errors whe…
Browse files Browse the repository at this point in the history
…n vendoring this gem in other projects
  • Loading branch information
yanowitz committed Apr 6, 2012
1 parent 73de36b commit 1681305
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions airbrake.gemspec
Expand Up @@ -8,9 +8,9 @@ Gem::Specification.new do |s|
s.summary = %q{Send your application errors to our hosted service and reclaim your inbox.}

s.require_paths = ["lib"]
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")

s.files = Dir.glob("**/*")
s.test_files = Dir.glob("{test,spec,features}/*")
s.add_runtime_dependency("builder")
s.add_runtime_dependency("activesupport")

Expand Down

0 comments on commit 1681305

Please sign in to comment.