Sha256: 4eb445e0475ffb42145737af270f0d4e6f7bf0df6805047f0f1f66d0d2523488

Contents?: true

Size: 1.97 KB

Versions: 1

Compression:

Stored size: 1.97 KB

Contents

# frozen_string_literal: true

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "object_identifier/version"

Gem::Specification.new do |spec|
  spec.name          = "object_identifier"
  spec.version       = ObjectIdentifier::VERSION
  spec.authors       = ["Paul DobbinSchmaltz", "Evan Sherwood"]
  spec.email         = ["p.dobbinschmaltz@icloud.com"]
  spec.required_ruby_version = ">= 2.4.0"

  spec.summary       = "ObjectIdentifier identifies an object by its class name and attributes."
  spec.description   = "Object Identifier allows quick, easy, and uniform identification of an object by inspecting its class name and outputting any desirable attributes/methods. It is great for logging, sending descriptive notification messages, etc."
  spec.homepage      = "https://github.com/pdobb/object_identifier"
  spec.license       = "MIT"

  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
  # to allow pushing to a single host or delete this section to allow pushing to any host.
  # if spec.respond_to?(:metadata)
  #   spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
  # else
  #   raise "RubyGems 2.0 or newer is required to protect against " \
  #     "public gem pushes."
  # end

  spec.files         = `git ls-files -z`.split("\x0").reject do |f|
    f.match(%r{^(test|spec|features)/})
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.add_development_dependency "bundler"
  spec.add_development_dependency "byebug"
  spec.add_development_dependency "minitest"
  spec.add_development_dependency "minitest-reporters"
  spec.add_development_dependency "pry"
  spec.add_development_dependency "pry-byebug"
  spec.add_development_dependency "rake"
  spec.add_development_dependency "reek"
  spec.add_development_dependency "rubocop"
  spec.add_development_dependency "simplecov"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
object_identifier-0.4.1 object_identifier.gemspec