Sha256: 0f3d01a9693003729ccac158345e919cd5af2150735968ef4199fbb5a7d9e237

Contents?: true

Size: 1.66 KB

Versions: 2

Compression:

Stored size: 1.66 KB

Contents

require './lib/license_finder/platform'

Gem::Specification.new do |s|
  s.name        = "license_finder"
  s.version     = "0.9.0"
  s.authors     = ["Jacob Maine", "Matthew Kane Parker", "Ian Lesperance", "David Edwards", "Paul Meskers", "Brent Wheeldon", "David Tengdin", "William Ramsey"]
  s.email       = ["licensefinder@pivotalabs.com"]
  s.homepage    = "https://github.com/pivotal/LicenseFinder"
  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_dependency "sequel"
  s.add_dependency "thor"
  s.add_dependency "rake"
  s.add_dependency LicenseFinder::Platform.sqlite_gem

  %w(rspec xpath cucumber).each do |gem|
    s.add_development_dependency gem
  end

  s.add_development_dependency "database_cleaner", "0.9.1"
  s.add_development_dependency "capybara", "~> 2.0.0"
  s.add_development_dependency "rails", "~> 3.2.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) }

  s.platform = "java" if LicenseFinder::Platform.java?
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
license_finder-0.9.0-java license_finder.gemspec
license_finder-0.9.0 license_finder.gemspec