Sha256: 86df44fa17949ca3388f16d5999d9867929102772d78cb4fc10e0f4c325d1403

Contents?: true

Size: 1.16 KB

Versions: 2

Compression:

Stored size: 1.16 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)

require 'invoca/utils/version'

Gem::Specification.new do |spec|
  spec.name          = "invoca-utils"
  spec.version       = Invoca::Utils::VERSION
  spec.licenses      = ["MIT"]

  spec.authors       = ["Invoca development"]
  spec.email         = ["development@invoca.com"]

  spec.summary       = "A public collection of helpers used in multiple projects"
  spec.description   = "A public collection of helpers used in multiple projects"
  spec.homepage      = "https://github.com/Invoca/invoca-utils"

  spec.metadata["allowed_push_host"] = "https://rubygems.org"

  spec.files         = `git ls-files -z`.split("\x0")
  spec.executables   = spec.files.grep(%r{^bin/}) { |file| File.basename(file) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  # this should match the minimum github pipeline targets
  # which is currently set to 2.5
  spec.required_ruby_version = ">= 2.5.0"

  spec.add_dependency "activesupport", ">= 5.0"

  # Specify this gem's development and test dependencies in Gemfile
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
invoca-utils-0.5.1 invoca-utils.gemspec
invoca-utils-0.5.0 invoca-utils.gemspec