Sha256: 3d4a24b5615c097a280bc72d7131932a1d24d45fbf203aae703b2a920a7089cd

Contents?: true

Size: 1.91 KB

Versions: 4

Compression:

Stored size: 1.91 KB

Contents

lib = File.expand_path('../lib/', __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'license_finder/platform'
require '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       = ["labs-commoncode@pivotal.io"]
  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_dependency "rubyzip"

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

  # temporary to preserve ruby 1.9.3 support.
  s.add_development_dependency "mime-types", "< 3.0"

  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

4 entries across 4 versions & 1 rubygems

Version Path
license_finder-2.1.2 license_finder.gemspec
license_finder-2.1.1 license_finder.gemspec
license_finder-2.1.0 license_finder.gemspec
license_finder-2.1.0.rc9 license_finder.gemspec