forked from savonrb/wasabi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwasabi.gemspec
31 lines (27 loc) · 1.01 KB
/
wasabi.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "wasabi/version"
Gem::Specification.new do |s|
s.name = "wasabi"
s.version = Wasabi::VERSION
s.authors = ["Daniel Harrington"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/savonrb/#{s.name}"
s.summary = "A simple WSDL parser"
s.description = s.summary
s.required_ruby_version = '>= 2.7'
s.license = 'MIT'
s.add_dependency "httpi", "~> 3.0"
s.add_dependency "nokogiri", ">= 1.13.9"
s.add_dependency "addressable"
s.files = Dir["lib/**/*", "CHANGELOG.md", "LICENSE", "README.md"]
s.require_paths = ["lib"]
s.metadata = {
"changelog_uri" =>
"https://github.com/savonrb/wasabi/blob/master/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/wasabi/#{s.version}",
"source_code_uri" => "https://github.com/savonrb/wasabi",
"bug_tracker_uri" => "https://github.com/savonrb/wasabi/issues",
"rubygems_mfa_required" => "true",
}
end