mirror of
https://github.com/lostisland/faraday.git
synced 2025-10-05 00:05:35 -04:00
Require its specific version in `Gemfile`. Fix it's installation in CI. Enable new cops. Resolve new offenses. Drop support of Ruby 2.3 (it's not supported by RuboCop and by MRI:https://www.ruby-lang.org/en/news/2019/03/31/support-of-ruby-2-3-has-ended/) Deprecate `Faraday::Request#method`, replace it with `#http_method`.
34 lines
1.1 KiB
Ruby
34 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
lib = 'faraday'
|
|
lib_file = File.expand_path("../lib/#{lib}.rb", __FILE__)
|
|
File.read(lib_file) =~ /\bVERSION\s*=\s*["'](.+?)["']/
|
|
version = Regexp.last_match(1)
|
|
|
|
Gem::Specification.new do |spec|
|
|
spec.name = lib
|
|
spec.version = version
|
|
|
|
spec.summary = 'HTTP/REST API client library.'
|
|
|
|
spec.authors = ['@technoweenie', '@iMacTia', '@olleolleolle']
|
|
spec.email = 'technoweenie@gmail.com'
|
|
spec.homepage = 'https://lostisland.github.io/faraday'
|
|
spec.licenses = ['MIT']
|
|
|
|
spec.required_ruby_version = '>= 2.4'
|
|
|
|
spec.add_dependency 'multipart-post', '>= 1.2', '< 3'
|
|
|
|
files = %w[CHANGELOG.md LICENSE.md README.md Rakefile examples lib spec]
|
|
spec.files = `git ls-files -z #{files.join(' ')}`.split("\0")
|
|
spec.require_paths = %w[lib spec/external_adapters]
|
|
spec.metadata = {
|
|
'homepage_uri' => 'https://lostisland.github.io/faraday',
|
|
'changelog_uri' =>
|
|
"https://github.com/lostisland/faraday/releases/tag/v#{spec.version}",
|
|
'source_code_uri' => 'https://github.com/lostisland/faraday',
|
|
'bug_tracker_uri' => 'https://github.com/lostisland/faraday/issues'
|
|
}
|
|
end
|