license_finder.gemspec in license_finder-0.4.1 vs license_finder.gemspec in license_finder-0.4.5
- old
+ new
@@ -1,24 +1,19 @@
-# -*- encoding: utf-8 -*-
-$:.push File.expand_path("../lib", __FILE__)
-require "license_finder/version"
-
Gem::Specification.new do |s|
s.name = "license_finder"
- s.version = LicenseFinder::VERSION
- s.platform = Gem::Platform::RUBY
- s.authors = ["Jacob Maine"]
- s.email = ["jacob.maine@gmail.com"]
- # s.homepage = "http://rubygems.org/gems/license_finder"
- s.summary = %q{License finding heaven.}
- s.description = %q{Find and display licenses of a project's gem dependencies.}
+ s.version = "0.4.5"
+ s.authors = ["Jacob Maine", "Matthew Kane Parker", "Ian Lesperance", "David Edwards"]
+ 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.license = "MIT"
- s.rubyforge_project = "license_finder"
- s.add_development_dependency 'rspec', '~>2.3'
- s.add_development_dependency 'rr'
- s.add_development_dependency 'rake'
+ s.add_development_dependency "rails", ">=3"
+ %w(rspec rr rake cucumber rails).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")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
- s.require_paths = ["lib"]
end