-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhttp_wrapper.gemspec
More file actions
26 lines (21 loc) · 1.03 KB
/
Copy pathhttp_wrapper.gemspec
File metadata and controls
26 lines (21 loc) · 1.03 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
# frozen_string_literal: true
require_relative 'lib/http_wrapper/version'
Gem::Specification.new do |spec|
spec.name = 'http_wrapper'
spec.version = HTTPWrapper::VERSION
spec.authors = ['Leonid Svyatov', 'Alexander Shvets']
spec.email = 'leonid@svyatov.ru'
spec.description = 'Simple wrapper around standard Net::HTTP library with multipart/form-data file upload ability'
spec.summary = 'Simple wrapper around standard Net::HTTP library'
spec.homepage = 'https://github.com/svyatov/http_wrapper'
spec.license = 'MIT'
spec.files = Dir['lib/**/*.rb'] + %w[CHANGELOG.md LICENSE README.md http_wrapper.gemspec]
spec.require_paths = %w[lib]
spec.required_ruby_version = '>= 3.2.0'
spec.metadata = {
'rubygems_mfa_required' => 'true',
'source_code_uri' => 'https://github.com/svyatov/http_wrapper',
'changelog_uri' => 'https://github.com/svyatov/http_wrapper/blob/master/CHANGELOG.md',
'bug_tracker_uri' => 'https://github.com/svyatov/http_wrapper/issues'
}
end