Skip to content

Commit

Permalink
allow faraday 1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pcai committed Jul 17, 2024
1 parent 7189859 commit 3f29a19
Showing 1 changed file with 17 additions and 18 deletions.
35 changes: 17 additions & 18 deletions wasabi.gemspec
Original file line number Diff line number Diff line change
@@ -1,31 +1,30 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "wasabi/version"
$:.push File.expand_path('lib', __dir__)
require 'wasabi/version'

Gem::Specification.new do |s|
s.name = "wasabi"
s.name = 'wasabi'
s.version = Wasabi::VERSION
s.authors = ["Daniel Harrington"]
s.email = ["[email protected]"]
s.authors = ['Daniel Harrington']
s.email = ['[email protected]']
s.homepage = "https://github.com/savonrb/#{s.name}"
s.summary = "A simple WSDL parser"
s.summary = 'A simple WSDL parser'
s.description = s.summary
s.required_ruby_version = '>= 3.0'

s.license = 'MIT'

s.add_dependency "faraday", "~> 2.8"
s.add_dependency "nokogiri", ">= 1.13.9"
s.add_dependency "addressable"
s.add_dependency 'addressable'
s.add_dependency 'faraday', '>= 1.0'
s.add_dependency 'nokogiri', '>= 1.13.9'

s.files = Dir["lib/**/*", "CHANGELOG.md", "LICENSE", "README.md"]
s.require_paths = ["lib"]
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",
'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

0 comments on commit 3f29a19

Please sign in to comment.