Sha256: b733211da5accb92a48974ad0aab560445c767db15422e81939e91eabd31e47d
Contents?: true
Size: 1.91 KB
Versions: 1
Compression:
Stored size: 1.91 KB
Contents
lib = File.expand_path("../lib", __FILE__) $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 Dobbins", "Evan Sherwood"] spec.email = ["paul.dobbins@icloud.com"] spec.summary = %q{ObjectIdentifier identifies an object by its class name and attributes.} spec.description = %q{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 quickly 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", "~> 1.16" spec.add_development_dependency "rake", "~> 10.0" spec.add_development_dependency "minitest", "~> 5.0" spec.add_development_dependency "minitest-reporters", "~> 1.2" spec.add_development_dependency "simplecov", "~> 0.16" spec.add_development_dependency "byebug", "~> 10.0" spec.add_development_dependency "pry", "~> 0.11" spec.add_development_dependency "pry-byebug", "~> 3.6" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
object_identifier-0.1.0 | object_identifier.gemspec |