-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanticore-client.gemspec
More file actions
39 lines (34 loc) · 1.29 KB
/
Copy pathmanticore-client.gemspec
File metadata and controls
39 lines (34 loc) · 1.29 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
27
28
29
30
31
32
33
34
35
36
37
38
39
# frozen_string_literal: true
$LOAD_PATH.unshift File.expand_path("lib", __dir__)
require "manticore/client/version"
Gem::Specification.new do |spec|
spec.name = "manticore-client"
spec.version = Manticore::Client::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["OpenAPI-Generator"]
spec.email = ["subbota@gmail.com"]
spec.homepage = "https://github.com/numbata/manticore-client"
spec.summary = "Autogenerated Manticore Search client"
spec.description = "Сlient for Manticore Search. "
spec.license = "MIT"
spec.required_ruby_version = ">= 2.7"
spec.metadata = {
"bug_tracker_uri" => "#{spec.homepage}/issues",
"changelog_uri" => "#{spec.homepage}/blob/v#{spec.version}/CHANGELOG.md",
"homepage_uri" => spec.homepage,
"source_code_uri" => spec.homepage,
"rubygems_mfa_required" => "true"
}
spec.add_dependency "faraday", ">= 1.0.1", "< 3.0"
spec.add_dependency "faraday-multipart"
spec.add_dependency "marcel"
spec.add_dependency "zeitwerk"
spec.files = `git ls-files`.split("\n").reject do |f|
f.match(%r{^(spec|docs)/}) ||
f.match(%r{^\.(git|github)/}) ||
f.match(/^\.(gitignore|rubocop.yml|openapi|rspec)/) ||
f.match(/^(Rakefile|Gemfile|Gemfile.lock)\b/)
end
spec.executables = []
spec.require_paths = ["lib"]
end