-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspidercloud.gemspec
More file actions
40 lines (33 loc) · 1.73 KB
/
spidercloud.gemspec
File metadata and controls
40 lines (33 loc) · 1.73 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
40
require_relative 'lib/spider_cloud/version'
Gem::Specification.new do | spec |
spec.name = 'spidercloud'
spec.version = SpiderCloud::VERSION
spec.authors = [ 'Kristoph Cichocki-Romanov' ]
spec.email = [ 'rubygems.org@kristoph.net' ]
spec.summary =
"The SpiderCloud gem implements a lightweight interface to the Spider Cloud API for " \
"web scraping, crawling, screenshots, and link extraction."
spec.description =
"The SpiderCloud gem implements a lightweight interface to the Spider Cloud API. Spider " \
"Cloud provides powerful web scraping and crawling capabilities with support for " \
"JavaScript rendering, proxy rotation, and anti-bot measures.\n" \
"\n" \
"This gem supports scrape, crawl, screenshot, and links endpoints with comprehensive " \
"options for content extraction, filtering, and automation."
spec.license = 'MIT'
spec.homepage = 'https://github.com/EndlessInternational/spider-cloud'
spec.metadata = {
'source_code_uri' => 'https://github.com/EndlessInternational/spider-cloud',
'bug_tracker_uri' => 'https://github.com/EndlessInternational/spider-cloud/issues',
}
spec.required_ruby_version = '>= 3.0'
spec.files = Dir[ "lib/**/*.rb", "readme/**/*.md", "LICENSE", "README.md",
"spidercloud.gemspec" ]
spec.require_paths = [ "lib" ]
spec.add_runtime_dependency 'faraday', '~> 2'
spec.add_runtime_dependency 'dynamicschema', '~> 2'
spec.add_runtime_dependency 'base64', '~> 0.2'
spec.add_development_dependency 'minitest', '~> 6'
spec.add_development_dependency 'debug', '~> 1.11'
spec.add_development_dependency 'vcr', '~> 6.4'
end