-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathattribool.gemspec
35 lines (30 loc) · 1.32 KB
/
attribool.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
require_relative "lib/attribool/version"
Gem::Specification.new do |spec|
spec.name = "attribool"
spec.version = Attribool::VERSION
spec.authors = ["Evan Gray"]
spec.email = "[email protected]"
spec.license = "MIT"
spec.summary = %(Macros for creating boolean attribute methods)
spec.description = %(Macros for creating boolean attribute methods)
spec.homepage = "https://github.com/evanthegrayt/attribool"
unless spec.respond_to?(:metadata)
raise "RubyGems 2.0 or newer is required to protect against " \
"public gem pushes."
end
spec.metadata["allowed_push_host"] = "https://rubygems.org"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/evanthegrayt/attribool"
spec.metadata["documentation_uri"] = "https://evanthegrayt.github.io/attribool/"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.bindir = "bin"
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "pry"
spec.add_development_dependency "rake", "~> 13.0", ">= 13.0.1"
spec.add_development_dependency "simplecov"
spec.add_development_dependency "standard"
spec.add_development_dependency "test-unit", "~> 3.3", ">= 3.3.5"
end