Skip to content

Commit

Permalink
simplify gemspec development dependency stanza
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthew Kane Parker committed Sep 7, 2012
1 parent 2a9c0a4 commit df64a7a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions license_finder.gemspec
Expand Up @@ -9,9 +9,9 @@ Gem::Specification.new do |s|
s.description = "Find and display licenses of a project's gem dependencies, so that you know what your limitations are when distributing your application."
s.license = "MIT"

s.add_development_dependency 'rspec', '~>2.3'
s.add_development_dependency 'rr'
s.add_development_dependency 'rake'
%w(rspec rr rake cucumber).each do |gem|
s.add_development_dependency gem
end

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
Expand Down

0 comments on commit df64a7a

Please sign in to comment.