-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserpapi.gemspec
More file actions
34 lines (29 loc) · 1.24 KB
/
serpapi.gemspec
File metadata and controls
34 lines (29 loc) · 1.24 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
if RUBY_VERSION < '2.1.0'
load File.join(File.dirname(__FILE__), 'lib/serpapi/version')
else
require_relative 'lib/serpapi/version'
end
Gem::Specification.new do |s|
s.name = 'serpapi'
s.version = SerpApi::VERSION
s.summary = 'Official Ruby library for SerpApi.com'
s.description = 'Integrate powerful search functionality into your Ruby application with SerpApi. SerpApi offers official
support for Google, Google Maps, Google Shopping, Baidu, Yandex, Yahoo, eBay, App Stores, and more.
Access a vast range of data, including web search results, local business listings, and product
information.'
s.authors = ['victor benarbia', 'Julien Khaleghy']
s.email = 'victor@serpapi.com'
s.files = Dir['{lib}/serpapi.rb'] + Dir['{lib}/serpapi/*.rb']
s.require_paths = ['lib']
s.homepage = 'https://github.com/serpapi/serpapi-ruby'
s.license = 'MIT'
s.required_ruby_version = '>= 2.7'
# faraday
s.add_dependency 'http', '~> 5.2'
# development dependency
s.add_development_dependency 'rake', '~> 13.2.1'
s.add_development_dependency 'rspec', '~>3.11'
s.add_development_dependency 'yard', '~>0.9.28'
s.add_development_dependency 'rubocop', '~>1.75.7'
s.add_development_dependency 'csv'
end