Sha256: aab0a07647cbea573af2b318739deea2998ea1408da66e2070e9676287fb50be
Contents?: true
Size: 970 Bytes
Versions: 6
Compression:
Stored size: 970 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'license/compatibility/version' Gem::Specification.new do |spec| spec.name = "license-compatibility" spec.version = License::Compatibility::VERSION spec.authors = ["Andrew Nesbitt"] spec.email = ["andrewnez@gmail.com"] spec.summary = "Check compatibility between different SPDX licenses" spec.homepage = "https://github.com/librariesio/license-compatibility" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) } spec.bindir = "exe" spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) } spec.require_paths = ["lib"] spec.add_development_dependency "bundler", "~> 1.10" spec.add_development_dependency "rake", "~> 10.4" spec.add_development_dependency "rspec", "~> 3.4" end
Version data entries
6 entries across 6 versions & 1 rubygems