Sha256: b8d13d5313a3b6b070558cb25d43411f3c848a3a70975a0545419389adeb06fd
Contents?: true
Size: 956 Bytes
Versions: 14
Compression:
Stored size: 956 Bytes
Contents
# frozen_string_literal: true lib = File.expand_path('lib', __dir__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'diffend' Gem::Specification.new do |spec| spec.name = 'diffend' spec.version = Diffend::VERSION spec.authors = ['Tomasz Pajor'] spec.email = ['contact@diffend.io'] spec.summary = 'OSS supply chain security and management platform' spec.summary = 'OSS supply chain security and management platform.' spec.homepage = Diffend::HOMEPAGE spec.license = 'Prosperity Public License' if $PROGRAM_NAME.end_with?('gem') spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem') end spec.cert_chain = %w[certs/tomaszpajor.pem] spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) } spec.require_paths = %w[lib] spec.add_development_dependency 'bundler' spec.add_development_dependency 'rake' end
Version data entries
14 entries across 14 versions & 2 rubygems