ronin-web-spider 0.2.0 → 0.2.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/ruby.yml +1 -0
- data/ChangeLog.md +4 -0
- data/README.md +1 -1
- data/gemspec.yml +1 -1
- data/lib/ronin/web/spider/agent.rb +1 -1
- data/lib/ronin/web/spider/exceptions.rb +1 -1
- data/lib/ronin/web/spider/git_archive.rb +2 -2
- data/lib/ronin/web/spider/version.rb +2 -2
- data/lib/ronin/web/spider.rb +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5638eaaa733bb6e0bf0e843a2d4dd66254cfe3d48d5b92006ab6e47e51837d13
|
4
|
+
data.tar.gz: a61ad4ae24c374b7df930d24f9ffa362dc28753e8200a3401b43653a5b7b2221
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: db1cd84cd10b99b981629171c43e901ae66250cf37b74a5a8ec64a7bf9da984a35aff0e96ad30c9d62c1b1407b25eb3039d3985148becf5ec461b56891158266
|
7
|
+
data.tar.gz: 60255389e5b735b69b40d69786a2ec8d4ce15583b9c93bb63d459541d1d7ac344f34b50d21df80b7c5681fc63c56fac595c46ab64b6e2f281f6a725edc2b2b96
|
data/.github/workflows/ruby.yml
CHANGED
data/ChangeLog.md
CHANGED
data/README.md
CHANGED
@@ -412,7 +412,7 @@ gem.add_dependency 'ronin-web-spider', '~> 0.1'
|
|
412
412
|
|
413
413
|
## License
|
414
414
|
|
415
|
-
Copyright (c) 2006-
|
415
|
+
Copyright (c) 2006-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
|
416
416
|
|
417
417
|
ronin-web-spider is free software: you can redistribute it and/or modify
|
418
418
|
it under the terms of the GNU Lesser General Public License as published
|
data/gemspec.yml
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#
|
3
3
|
# ronin-web-spider - A collection of common web spidering routines.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2006-
|
5
|
+
# Copyright (c) 2006-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-web-spider is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -2,7 +2,7 @@
|
|
2
2
|
#
|
3
3
|
# ronin-web-spider - A collection of common web spidering routines.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2006-
|
5
|
+
# Copyright (c) 2006-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-web-spider is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -18,8 +18,8 @@
|
|
18
18
|
# along with ronin-web-spider. If not, see <https://www.gnu.org/licenses/>.
|
19
19
|
#
|
20
20
|
|
21
|
-
|
22
|
-
|
21
|
+
require_relative 'archive'
|
22
|
+
require_relative 'exceptions'
|
23
23
|
|
24
24
|
module Ronin
|
25
25
|
module Web
|
@@ -2,7 +2,7 @@
|
|
2
2
|
#
|
3
3
|
# ronin-web-spider - A collection of common web spidering routines.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2006-
|
5
|
+
# Copyright (c) 2006-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-web-spider is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -22,7 +22,7 @@ module Ronin
|
|
22
22
|
module Web
|
23
23
|
module Spider
|
24
24
|
# ronin-web-spider version
|
25
|
-
VERSION = '0.2.
|
25
|
+
VERSION = '0.2.1'
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
data/lib/ronin/web/spider.rb
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
#
|
3
3
|
# ronin-web-spider - A collection of common web spidering routines.
|
4
4
|
#
|
5
|
-
# Copyright (c) 2006-
|
5
|
+
# Copyright (c) 2006-2025 Hal Brodigan (postmodern.mod3 at gmail.com)
|
6
6
|
#
|
7
7
|
# ronin-web-spider is free software: you can redistribute it and/or modify
|
8
8
|
# it under the terms of the GNU Lesser General Public License as published
|
@@ -18,8 +18,8 @@
|
|
18
18
|
# along with ronin-web-spider. If not, see <https://www.gnu.org/licenses/>.
|
19
19
|
#
|
20
20
|
|
21
|
-
|
22
|
-
|
21
|
+
require_relative 'spider/agent'
|
22
|
+
require_relative 'spider/version'
|
23
23
|
|
24
24
|
module Ronin
|
25
25
|
module Web
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ronin-web-spider
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Postmodern
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2025-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: spidr
|
@@ -84,7 +84,7 @@ files:
|
|
84
84
|
- ronin-web-spider.gemspec
|
85
85
|
homepage: https://ronin-rb.dev/
|
86
86
|
licenses:
|
87
|
-
- LGPL-3.0
|
87
|
+
- LGPL-3.0-or-later
|
88
88
|
metadata:
|
89
89
|
documentation_uri: https://ronin-rb.dev/docs/ronin-web-spider
|
90
90
|
source_code_uri: https://github.com/ronin-rb/ronin-web-spider
|
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
106
106
|
- !ruby/object:Gem::Version
|
107
107
|
version: '0'
|
108
108
|
requirements: []
|
109
|
-
rubygems_version: 3.5.
|
109
|
+
rubygems_version: 3.5.22
|
110
110
|
signing_key:
|
111
111
|
specification_version: 4
|
112
112
|
summary: A collection of common web spidering routines.
|