This repository was archived by the owner on Jul 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxycrawl.gemspec
More file actions
43 lines (35 loc) · 1.71 KB
/
proxycrawl.gemspec
File metadata and controls
43 lines (35 loc) · 1.71 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
41
42
43
# coding: utf-8
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "proxycrawl/version"
Gem::Specification.new do |spec|
spec.name = "proxycrawl"
spec.version = ProxyCrawl::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ["proxycrawl"]
spec.email = ["info@proxycrawl.com"]
spec.summary = %q{ProxyCrawl API client for web scraping and crawling}
spec.description = %q{Ruby based client for the ProxyCrawl API that helps developers crawl or scrape thousands of web pages anonymously}
spec.homepage = "https://github.com/proxycrawl/proxycrawl-ruby"
spec.license = "MIT"
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.required_ruby_version = '>= 2.0'
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_development_dependency "rspec", "~> 3.2"
spec.add_development_dependency "webmock", "~> 3.4"
spec.add_development_dependency "bundler", "~> 2.0"
spec.add_development_dependency "rake", "~> 12.3.3"
# Deprecation warning
spec.post_install_message = <<~MESSAGE
================================================================================
DEPRECATION WARNING - 'proxycrawl' gem
================================================================================
'proxycrawl' is deprecated due to rebranding. Please switch to the 'crawlbase' gem.
More details and migration guide: https://github.com/crawlbase-source/crawlbase-ruby
================================================================================
MESSAGE
end