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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 005a85677f28561695a81764891b032df60253f1908b71adb6395a5812919bcf
4
- data.tar.gz: 13d83d6dcfdd35e9c3745e55614a04e3787b91d72a842adf530d216753aa3d91
3
+ metadata.gz: 5638eaaa733bb6e0bf0e843a2d4dd66254cfe3d48d5b92006ab6e47e51837d13
4
+ data.tar.gz: a61ad4ae24c374b7df930d24f9ffa362dc28753e8200a3401b43653a5b7b2221
5
5
  SHA512:
6
- metadata.gz: 733c696e2799aabd40bed11dba4829cdcfe902537096cf3fb46d5db5406c850e12a9d896e39dd86f53b1f124d824456e96f109b501794f945a626518a835ca15
7
- data.tar.gz: ea49a778b22a0aaf3fa150df20aaa3759edaa775483b0fb7b0c5ee7a0e414934cedd1740091d73df7d8da30ffb93fdde786cdb57f5828e64071d78e00ad6bd2a
6
+ metadata.gz: db1cd84cd10b99b981629171c43e901ae66250cf37b74a5a8ec64a7bf9da984a35aff0e96ad30c9d62c1b1407b25eb3039d3985148becf5ec461b56891158266
7
+ data.tar.gz: 60255389e5b735b69b40d69786a2ec8d4ce15583b9c93bb63d459541d1d7ac344f34b50d21df80b7c5681fc63c56fac595c46ab64b6e2f281f6a725edc2b2b96
@@ -13,6 +13,7 @@ jobs:
13
13
  - '3.1'
14
14
  - '3.2'
15
15
  - '3.3'
16
+ - '3.4'
16
17
  - jruby
17
18
  - truffleruby
18
19
  name: Ruby ${{ matrix.ruby }}
data/ChangeLog.md CHANGED
@@ -1,3 +1,7 @@
1
+ ### 0.2.1 / 2025-02-14
2
+
3
+ * Use `require_relative` to improve load times.
4
+
1
5
  ### 0.2.0 / 2024-07-22
2
6
 
3
7
  * Added {Ronin::Web::Spider::Agent#every_javascript_url_string}.
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-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
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
@@ -4,7 +4,7 @@ description:
4
4
  ronin-web-spider is a collection of common web spidering routines using the
5
5
  spidr gem.
6
6
 
7
- license: LGPL-3.0
7
+ license: LGPL-3.0-or-later
8
8
  authors: Postmodern
9
9
  email: postmodern.mod3@gmail.com
10
10
  homepage: https://ronin-rb.dev/
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-web-spider - A collection of common web spidering routines.
4
4
  #
5
- # Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
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-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
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
- require 'ronin/web/spider/archive'
22
- require 'ronin/web/spider/exceptions'
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-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
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.0'
25
+ VERSION = '0.2.1'
26
26
  end
27
27
  end
28
28
  end
@@ -2,7 +2,7 @@
2
2
  #
3
3
  # ronin-web-spider - A collection of common web spidering routines.
4
4
  #
5
- # Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com)
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
- require 'ronin/web/spider/agent'
22
- require 'ronin/web/spider/version'
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.0
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: 2024-07-22 00:00:00.000000000 Z
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.11
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.