-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchapi-ruby.gemspec
More file actions
29 lines (22 loc) · 1.14 KB
/
Copy pathsearchapi-ruby.gemspec
File metadata and controls
29 lines (22 loc) · 1.14 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
# frozen_string_literal: true
require_relative "lib/searchapi/version"
Gem::Specification.new do |spec|
spec.name = "searchapi-ruby"
spec.version = SearchApi::VERSION
spec.authors = ["aalvaaro"]
spec.email = ["hola@alvarodelgado.dev"]
spec.summary = "Ruby client for SearchAPI.io - 63 search engines in one gem"
spec.description = "Full-featured Ruby client for SearchAPI.io. Access 63 search engines including Google, Bing, Baidu, Yandex, DuckDuckGo, YouTube, Amazon, Walmart, Airbnb, TripAdvisor, social media profiles, ad libraries, and more."
spec.homepage = "https://github.com/aalvaaro/searchapi-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = Dir.chdir(__dir__) do
Dir["{lib}/**/*", "LICENSE.txt", "README.md", "CHANGELOG.md"]
end
spec.require_paths = ["lib"]
spec.add_dependency "faraday", ">= 2.0", "< 3.0"
spec.add_dependency "faraday-retry", "~> 2.0"
end