license_finder.gemspec in license_finder-0.5.0 vs license_finder.gemspec in license_finder-0.6.0

- old
+ new

@@ -1,17 +1,25 @@ Gem::Specification.new do |s| s.name = "license_finder" - s.version = "0.5.0" + s.version = "0.6.0" s.authors = ["Jacob Maine", "Matthew Kane Parker", "Ian Lesperance", "David Edwards", "Paul Meskers"] s.email = ["brent@pivotalabs.com"] s.homepage = "https://github.com/pivotal/LicenseFinder" - s.summary = "Know your dependencies - and the licenses they are binding your application to." - 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.summary = "Audit the OSS licenses of your application's dependencies." + + s.description = <<-DESCRIPTION + Do you know the licenses of all your application's dependencies? What open source software licenses will your business accept? + + LicenseFinder culls your Gemfile, detects the licenses of the gems in it, and gives you a report that you can act on. If you already know + what licenses your business is comfortable with, you can whitelist them, leaving you with an action report of only those dependencies that have + licenses that fall outside of the whitelist. + DESCRIPTION + s.license = "MIT" s.add_dependency "bundler" s.add_development_dependency "rails", ">=3" - %w(rspec rr rake cucumber rails pry).each do |gem| + %w(rspec rr rake cucumber rails pry capybara).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")