-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathobject_identifier.gemspec
34 lines (28 loc) · 1.48 KB
/
object_identifier.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# frozen_string_literal: true
require_relative "lib/object_identifier/version"
Gem::Specification.new do |spec|
spec.name = "object_identifier"
spec.version = ObjectIdentifier::VERSION
spec.authors = ["Paul DobbinSchmaltz"]
spec.email = ["p.dobbinschmaltz@icloud.com"]
spec.summary = "Object Identifier 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"
spec.required_ruby_version = ">= 3.2"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/pdobb/object_identifier/issues",
"changelog_uri" => "https://github.com/pdobb/object_identifier/releases",
"source_code_uri" => "https://github.com/pdobb/object_identifier",
"homepage_uri" => spec.homepage,
"rubygems_mfa_required" => "true",
}
# Specify which files should be added to the gem when it is released.
spec.files = Dir.glob(%w[LICENSE.txt README.md {exe,lib}/**/*]).reject { |f| File.directory?(f) }
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "benchmark-ips"
spec.add_development_dependency "gemwork"
spec.add_development_dependency "rake"
end