Sha256: 86a9c9171a64c242d9ee1b8dc36591d07d0fee73b5790f22c777ac7cf62c2512

Contents?: true

Size: 1.69 KB

Versions: 3

Compression:

Stored size: 1.69 KB

Contents

require './lib/license_finder/platform'
require './lib/license_finder/version'

Gem::Specification.new do |s|
  s.required_ruby_version = '>= 1.9.3'
  s.name        = "license_finder"
  s.version     = LicenseFinder::VERSION

  s.authors = [
    "Jacob Maine",
    "Matthew Kane Parker",
    "Ian Lesperance",
    "David Edwards",
    "Paul Meskers",
    "Brent Wheeldon",
    "Trevor John",
    "David Tengdin",
    "William Ramsey",
    "David Dening",
    "Geoff Pleiss",
    "Mike Chinigo",
    "Mike Dalessio"
  ]

  s.email       = ["commoncode@pivotalabs.com"]
  s.homepage    = "https://github.com/pivotal/LicenseFinder"
  s.summary     = "Audit the OSS licenses of your application's dependencies."

  s.description = <<-DESCRIPTION
    LicenseFinder works with your package managers to find
    dependencies, detect the licenses of the packages in them, compare
    those licenses against a user-defined whitelist, and give you an
    actionable exception report.
  DESCRIPTION

  s.license     = "MIT"

  s.add_dependency "bundler"
  s.add_dependency "thor"
  s.add_dependency "httparty"
  s.add_dependency "xml-simple"

  s.add_development_dependency "rake"
  s.add_development_dependency "rspec-its"
  s.add_development_dependency "xpath"
  s.add_development_dependency "pry"
  s.add_development_dependency "rspec", "~> 3"
  s.add_development_dependency "capybara", "~> 2.0.0"
  s.add_development_dependency "webmock", "~> 1.13"
  s.add_development_dependency "cocoapods" if LicenseFinder::Platform.darwin?

  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) }
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
license_finder-2.0.1 license_finder.gemspec
license_finder-2.0.0 license_finder.gemspec
license_finder-2.0.0.rc2 license_finder.gemspec