-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsirop.gemspec
26 lines (22 loc) · 951 Bytes
/
sirop.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
require_relative './lib/sirop/version'
Gem::Specification.new do |s|
s.name = 'sirop'
s.version = Sirop::VERSION
s.licenses = ['MIT']
s.summary = 'Sirop: Ruby code rewriter'
s.author = 'Sharon Rosner'
s.files = `git ls-files README.md CHANGELOG.md lib`.split
s.homepage = 'http://github.com/digital-fabric/sirop'
s.metadata = {
"homepage_uri" => "https://github.com/digital-fabric/sirop",
"documentation_uri" => "https://www.rubydoc.info/gems/sirop",
"changelog_uri" => "https://github.com/digital-fabric/sirop/blob/main/CHANGELOG.md"
}
s.rdoc_options = ["--title", "Sirop", "--main", "README.md"]
s.extra_rdoc_files = ["README.md"]
s.require_paths = ["lib"]
s.required_ruby_version = '>= 3.2'
s.add_runtime_dependency 'prism', '~>0.27.0'
s.add_development_dependency 'minitest', '~>5.22.0'
end