-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearchapi.gemspec
More file actions
37 lines (30 loc) · 1.48 KB
/
searchapi.gemspec
File metadata and controls
37 lines (30 loc) · 1.48 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
require_relative 'lib/searchapi/version'
Gem::Specification.new do | spec |
spec.name = 'searchapi'
spec.version = SearchApi::VERSION
spec.authors = [ 'Kristoph Cichocki-Romanov' ]
spec.email = [ 'rubygems.org@kristoph.net' ]
spec.summary =
"A Ruby client for the SearchApi.io API, supporting various services including " \
"Google Search, YouTube, Instagram, and others."
spec.description =
"A Ruby client for the SearchApi.io API. Supports various services including " \
"Google Search, YouTube, Instagram, TikTok, Google Finance, Google Flights, " \
"Google News, Google Images, Google Scholar, and more."
spec.license = 'MIT'
spec.homepage = 'https://github.com/EndlessInternational/searchapi'
spec.metadata = {
'source_code_uri' => 'https://github.com/EndlessInternational/searchapi',
'bug_tracker_uri' => 'https://github.com/EndlessInternational/searchapi/issues',
}
spec.required_ruby_version = '>= 3.0'
spec.files = Dir[ "lib/**/*.rb", "bin/*", "LICENSE", "README.md", "searchapi.gemspec" ]
spec.bindir = 'bin'
spec.executables = []
spec.require_paths = [ "lib" ]
spec.add_runtime_dependency 'faraday', '~> 2'
spec.add_runtime_dependency 'dynamicschema', '~> 2'
spec.add_development_dependency 'minitest', '~> 5.25'
spec.add_development_dependency 'debug', '~> 1.9'
spec.add_development_dependency 'vcr', '~> 6.3'
end