ronin-web-spider 0.2.0.rc2 → 0.2.0.rc3

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: 7aedd94cd4b3f96a07824419722763a91374590e6944ab3ae58c6ff1432837ca
4
- data.tar.gz: 67d2d63b5468838f60f8b3aa3975dcb8f0842f66ca1d776384fb29c6a7f6a8ca
3
+ metadata.gz: ab74fe34ec9f37cba9a8269fa6df15cd4f5404d8b01904ead735fe7d98159ace
4
+ data.tar.gz: 0d8547dfdd92cef99193fe79c5a944500adb04ab80c6c0a89b000f727e5fafbe
5
5
  SHA512:
6
- metadata.gz: b9e7588f16084226b812db561261122af81fea2bd2d4c1b529c7cc1763e48060c90f716475e930029159f9cd1f886866f47ea03be8c4131c850af0b6d73da8c0
7
- data.tar.gz: 253283e0e5f8046d4d41fb9bf445933017e81b92e72c817aa0d4c6850c4952e0ec687e727196707f71e0343a97ba0f492a409e070a3c00e8d0fd8640feda75d5
6
+ metadata.gz: 0e10c97975ce2dd40b80ec204ac39f2fcecb74ee62af2dd0758e662214c5ce806352107309ece72fd38b0724e8de5e022692661a987975e6bb6266162d958749
7
+ data.tar.gz: 619387f4795f1efcea2d88e3e06162a05f33aabe9b1cae4da1267e5106ad94e97475e3078ae39497a2616f0636dfa362cc902185f9fc30b9683ca8c92c63d7ae
data/README.md CHANGED
@@ -32,6 +32,14 @@ ronin-web-spider is a collection of common web spidering routines using the
32
32
  * [every_javascript_string][docs-every_javascript_string] - yields every
33
33
  single-quoted or double-quoted String literal from all JavaScript source
34
34
  code.
35
+ * [every_javascript_relative_path_string][docs-every_javascript_relative_path_string] -
36
+ yields every relative path JavaScript string (ex: `foo/bar`).
37
+ * [every_javascript_absolute_path_string][docs-every_javascript_absolute_path_string] -
38
+ yields every relative path JavaScript string (ex: `/foo/bar`).
39
+ * [every_javascript_path_string][docs-every_javascript_path_string] -
40
+ yields every relative path JavaScript string (ex: `foo/bar` or `/foo/bar`).
41
+ * [every_javascript_url_string][docs-every_javascript_url_string] -
42
+ yields every URL JavaScript string (ex: `https://example.com/foo/bar`).
35
43
  * [every_javascript_comment][docs-every_javascript_comment] - yields every
36
44
  JavaScript comment.
37
45
  * [every_comment][docs-every_comment] - yields every HTML or JavaScript
@@ -46,6 +54,10 @@ ronin-web-spider is a collection of common web spidering routines using the
46
54
  [docs-every_html_comment]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_html_comment-instance_method
47
55
  [docs-every_javascript]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript-instance_method
48
56
  [docs-every_javascript_string]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_string-instance_method
57
+ [docs-every_javascript_relative_path_string]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_relative_path_string-instance_method
58
+ [docs-every_javascript_absolute_path_string]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_absolute_path_string-instance_method
59
+ [docs-every_javascript_path_string]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_path_string-instance_method
60
+ [docs-every_javascript_url_string]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_url_string-instance_method
49
61
  [docs-every_javascript_comment]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_javascript_comment-instance_method
50
62
  [docs-every_comment]: https://ronin-rb.dev/docs/ronin-web-spider/Ronin/Web/Spider/Agent.html#every_comment-instance_method
51
63
 
@@ -327,7 +327,7 @@ module Ronin
327
327
  # @since 0.1.1
328
328
  JAVASCRIPT_INLINE_REGEX_REGEX = %r{
329
329
  (?# match before the regex to avoid matching division operators )
330
- (?:[\{\[\(;:,]\s*|=\s*)
330
+ (?:[\{\[\(;:,]\s*|=\s*|return\s*)
331
331
  /
332
332
  (?# inline regex contents )
333
333
  (?:
@@ -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.rc2'
25
+ VERSION = '0.2.0.rc3'
26
26
  end
27
27
  end
28
28
  end
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.rc2
4
+ version: 0.2.0.rc3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Postmodern
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-06-23 00:00:00.000000000 Z
11
+ date: 2024-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: spidr