Sha256: f89a9c255192cf8f1dbe24e78385b972875d51bc9c72fe48116d113b87735805

Contents?: true

Size: 881 Bytes

Versions: 2

Compression:

Stored size: 881 Bytes

Contents

Gem::Specification.new do |gem|
  tag = `git describe --tags --abbrev=0`.chomp

  gem.name          = 'invocations'
  gem.homepage      = 'https://github.com/colstrom/invocations'
  gem.summary       = 'Drop-in alternative to procs and lambdas.'

  gem.version       = "#{tag}"
  gem.licenses      = ['MIT']
  gem.authors       = ['Chris Olstrom']
  gem.email         = 'chris@olstrom.com'

  gem.cert_chain    = ['trust/certificates/colstrom.pem']
  gem.signing_key   = File.expand_path ENV.fetch 'GEM_SIGNING_KEY'

  gem.files         = `git ls-files -z`.split("\x0")
  gem.test_files    = `git ls-files -z -- {test,spec,features}/*`.split("\x0")
  gem.executables   = `git ls-files -z -- bin/*`.split("\x0").map { |f| File.basename(f) }

  gem.require_paths = ['lib']

  gem.required_ruby_version = ['~> 2.3', '>= 2.3.0'] # Explicit Non-Support of Unsupported Ruby Versions
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
invocations-0.2.8 invocations.gemspec
invocations-0.2.7 invocations.gemspec