Skip to content

Commit

Permalink
Merge pull request airbrake#80 from yanowitz/patch-1
Browse files Browse the repository at this point in the history
remove git dependency from generating gemspec file.  causes errors when ...
  • Loading branch information
dvdplm committed Apr 14, 2012
2 parents 4c4238d + a7c86c6 commit 0f47921
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("{features,generators,lib,rails,resources,script,test}/*") + Dir.glob("*.md") + %w(CHANGELOG Gemfile Guardfile INSTALL MIT-LICENSE Rakefile SUPPORT_RAILS_VERSION install.rb)
s.test_files = Dir.glob("{test,spec,features}/**/*")
s.add_runtime_dependency("builder")
s.add_runtime_dependency("activesupport")

Expand Down

0 comments on commit 0f47921

Please sign in to comment.