-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathobject_inspector.gemspec
40 lines (34 loc) · 1.61 KB
/
object_inspector.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
35
36
37
38
39
40
# frozen_string_literal: true
require_relative "lib/object_inspector/version"
Gem::Specification.new do |spec|
spec.name = "object_inspector"
spec.version = ObjectInspector::VERSION
spec.authors = ["Paul DobbinSchmaltz"]
spec.email = ["p.dobbinschmaltz@icloud.com"]
spec.summary = "Object Inspector builds uniformly formatted inspect output with customizable amounts of detail."
spec.description = "Object Inspector takes Object#inspect to the next level. Specify any combination of identification attributes, flags, issues, info, and/or a name along with an optional, self-definable scope option to represents objects. Great for the console, logging, etc."
spec.homepage = "https://github.com/pdobb/object_inspector"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata = {
"bug_tracker_uri" => "https://github.com/pdobb/object_inspector/issues",
"changelog_uri" => "https://github.com/pdobb/object_inspector/releases",
"source_code_uri" => "https://github.com/pdobb/object_inspector",
"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 "object_identifier"
spec.add_development_dependency "rake"
end