-
Notifications
You must be signed in to change notification settings - Fork 472
/
mechanize.gemspec
74 lines (63 loc) · 2.77 KB
/
mechanize.gemspec
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# coding: utf-8
# frozen_string_literal: true
require_relative 'lib/mechanize/version'
Gem::Specification.new do |spec|
spec.name = "mechanize"
spec.version = Mechanize::VERSION
spec.homepage = "https://github.com/sparklemotion/mechanize"
spec.summary = 'The Mechanize library is used for automating interaction with websites'
spec.description =
[
"The Mechanize library is used for automating interaction with websites.",
"Mechanize automatically stores and sends cookies, follows redirects,",
"and can follow links and submit forms. Form fields can be populated and",
"submitted. Mechanize also keeps track of the sites that you have visited as",
"a history.",
].join("\n")
spec.authors =
[
'Eric Hodel',
'Aaron Patterson',
'Mike Dalessio',
'Akinori MUSHA',
'Lee Jarvis',
]
spec.email =
[
]
spec.metadata = {
'yard.run' => 'yard',
'bug_tracker_uri' => 'https://github.com/sparklemotion/mechanize/issues',
'changelog_uri' => 'https://github.com/sparklemotion/mechanize/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://www.rubydoc.info/gems/mechanize',
'homepage_uri' => 'https://github.com/sparklemotion/mechanize',
'source_code_uri' => 'https://github.com/sparklemotion/mechanize'
}
spec.license = "MIT"
spec.require_paths = ["lib"]
spec.files = %x(git ls-files).split($/)
spec.test_files = spec.files.grep(%r{^test/})
spec.extra_rdoc_files += Dir['*.rdoc', '*.md']
spec.rdoc_options = ["--main", "README.md"]
spec.required_ruby_version = ">= 2.6.0"
spec.add_runtime_dependency("addressable", "~> 2.8")
spec.add_runtime_dependency("domain_name", ">= 0.5.20190701", "~> 0.5")
spec.add_runtime_dependency("http-cookie", ">= 1.0.3", "~> 1.0")
spec.add_runtime_dependency("mime-types", "~> 3.3")
spec.add_runtime_dependency("net-http-digest_auth", ">= 1.4.1", "~> 1.4")
# careful! some folks are relying on older versions of net-http-persistent
# - see the socks proxy patch in use at #507 and #464
# - see use of retry_change_requests that was removed at #558
spec.add_runtime_dependency("net-http-persistent", ">= 2.5.2", "< 5.0.dev")
spec.add_runtime_dependency("nokogiri", ">= 1.11.2", "~> 1.11")
spec.add_runtime_dependency("webrick", "~> 1.7")
spec.add_runtime_dependency("webrobots", "~> 0.1.2")
spec.add_runtime_dependency("rubyntlm", ">= 0.6.3", "~> 0.6")
spec.add_runtime_dependency("base64") # removed from bundled gems in 3.4, and needed by rubyntlm (which doesn't declare this dependency)
spec.add_runtime_dependency("nkf") # removed from bundled gems in 3.4
end