-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsixarm_ruby_pathname_dirnames.gemspec
More file actions
38 lines (27 loc) · 1.22 KB
/
Copy pathsixarm_ruby_pathname_dirnames.gemspec
File metadata and controls
38 lines (27 loc) · 1.22 KB
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
# -*- coding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "sixarm_ruby_pathname_dirnames"
s.summary = "SixArm.com → Ruby → Pathname#dirnames method"
s.description = "Pathname#dirnames method to iterate on parent directories"
s.version = "1.0.2"
s.author = "SixArm"
s.email = "sixarm@sixarm.com"
s.homepage = "http://sixarm.com/"
s.licenses = ["Apache-2.0", "Artistic-2.0", "BSD-3-Clause", "GPL-2.0", "GPL-3.0", "MIT", "MPL-2.0"]
s.signing_key = "/opt/key/sixarm/sixarm-ruby-gem-signing-20230504-private.pem"
s.cert_chain = ["/opt/key/sixarm/sixarm-ruby-gem-signing-20230504-public.pem"]
s.platform = Gem::Platform::RUBY
s.require_path = "lib"
s.files = [
"Rakefile",
"lib/sixarm_ruby_pathname_dirnames.rb",
]
s.test_files = [
"test/sixarm_ruby_pathname_dirnames_test.rb",
]
s.add_development_dependency("minitest", ">= 5.12", "< 6")
s.add_development_dependency("sixarm_ruby_minitest_extensions", ">= 1.0.8", "< 2")
s.add_development_dependency("rake", ">= 12.3.3", "< 13")
s.add_development_dependency("simplecov", ">= 0.18.0", "< 2")
s.required_ruby_version = ">= 2.2"
end