nokogiri-html-ext 0.2.2 → 0.3.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/CHANGELOG.md +14 -4
- data/CONTRIBUTING.md +2 -2
- data/README.md +2 -2
- data/lib/nokogiri/html_ext/version.rb +1 -1
- 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: 5b7b920edbff5d762b7c2da37c37b59ae2455e0d1991b74595856098749e4fce
|
|
4
|
+
data.tar.gz: 457aa965cba9c5a01802efd664b5accc08298691d9b05a0f5dcf8c05e9fb37f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80fa06b7ffbbce44179b2f44aa19f42d70eb82145d8c52fd2a3eca57a4eade23b5d5ee81e7477c7e5bb2948cd54725e0096d5b34194921aad1b56cb73e46301c
|
|
7
|
+
data.tar.gz: 41332d2498b1796f8d2a97f0e43da23cc30522681f001099ef63d3cc75892b97f2753682021e2594f86e008cfcf11bb17e6ff15a0122e11e25cb11f173e58661
|
data/CHANGELOG.md
CHANGED
|
@@ -1,18 +1,28 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
3
|
+
## 0.3.1 / 2023-01-19
|
|
4
|
+
|
|
5
|
+
- Revert removal of escaping/unescaping code in relative URL resolution (a78e83a)
|
|
6
|
+
|
|
7
|
+
## 0.3.0 / 2023-01-19
|
|
8
|
+
|
|
9
|
+
- Remove escaping/unescaping code in relative URL resolution (2de6c5b)
|
|
10
|
+
- Remove code-scanning-rubocop and rspec-github gems (3b3e625)
|
|
11
|
+
- Update development Ruby to v2.7.7 (bd328f5)
|
|
12
|
+
|
|
13
|
+
## 0.2.2 / 2022-08-20
|
|
4
14
|
|
|
5
15
|
- Improve handling of escaped and invalid URLs (b0d6c75)
|
|
6
16
|
|
|
7
|
-
##
|
|
17
|
+
## 0.2.1 / 2022-08-20
|
|
8
18
|
|
|
9
19
|
- Handle escaped URLs and invalid URLs (af78837)
|
|
10
20
|
- Use ruby/debug gem instead of pry-byebug (4476b9d)
|
|
11
21
|
|
|
12
|
-
##
|
|
22
|
+
## 0.2.0 / 2022-07-02
|
|
13
23
|
|
|
14
24
|
- Make `resolve_relative_url` method public (d132dd3)
|
|
15
25
|
|
|
16
|
-
##
|
|
26
|
+
## 0.1.0 / 2022-07-01
|
|
17
27
|
|
|
18
28
|
- Initial release! 🎉
|
data/CONTRIBUTING.md
CHANGED
|
@@ -8,9 +8,9 @@ There are a couple ways you can help improve nokogiri-html-ext:
|
|
|
8
8
|
|
|
9
9
|
## Getting Started
|
|
10
10
|
|
|
11
|
-
nokogiri-html-ext is developed using Ruby 2.7.
|
|
11
|
+
nokogiri-html-ext is developed using Ruby 2.7.7 and is additionally tested against Ruby 3.0, 3.1, and 3.2 using [GitHub Actions](https://github.com/jgarber623/nokogiri-html-ext/actions).
|
|
12
12
|
|
|
13
|
-
Before making changes to nokogiri-html-ext, you'll want to install Ruby 2.7.
|
|
13
|
+
Before making changes to nokogiri-html-ext, you'll want to install Ruby 2.7.7. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm). Once you've installed Ruby 2.7.7 using your method of choice, install the project's gems by running:
|
|
14
14
|
|
|
15
15
|
```sh
|
|
16
16
|
bundle install
|
data/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://rubygems.org/gems/nokogiri-html-ext)
|
|
6
6
|
[](https://rubygems.org/gems/nokogiri-html-ext)
|
|
7
|
-
[](https://github.com/jgarber623/nokogiri-html-ext/actions/workflows/ci.yml)
|
|
8
8
|
[](https://codeclimate.com/github/jgarber623/nokogiri-html-ext)
|
|
9
9
|
[](https://codeclimate.com/github/jgarber623/nokogiri-html-ext/code)
|
|
10
10
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
Before installing and using nokogiri-html-ext, you'll want to have [Ruby](https://www.ruby-lang.org) 2.7 (or newer) installed. It's recommended that you use a Ruby version managment tool like [rbenv](https://github.com/rbenv/rbenv), [chruby](https://github.com/postmodern/chruby), or [rvm](https://github.com/rvm/rvm).
|
|
20
20
|
|
|
21
|
-
nokogiri-html-ext is developed using Ruby 2.7.
|
|
21
|
+
nokogiri-html-ext is developed using Ruby 2.7.7 and is additionally tested against Ruby 3.0, 3.1, and 3.2 using [GitHub Actions](https://github.com/jgarber623/nokogiri-html-ext/actions).
|
|
22
22
|
|
|
23
23
|
## Installation
|
|
24
24
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nokogiri-html-ext
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Garber
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-19 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: nokogiri
|
|
@@ -44,7 +44,7 @@ licenses:
|
|
|
44
44
|
- MIT
|
|
45
45
|
metadata:
|
|
46
46
|
bug_tracker_uri: https://github.com/jgarber623/nokogiri-html-ext/issues
|
|
47
|
-
changelog_uri: https://github.com/jgarber623/nokogiri-html-ext/blob/v0.
|
|
47
|
+
changelog_uri: https://github.com/jgarber623/nokogiri-html-ext/blob/v0.3.1/CHANGELOG.md
|
|
48
48
|
rubygems_mfa_required: 'true'
|
|
49
49
|
post_install_message:
|
|
50
50
|
rdoc_options: []
|
|
@@ -61,7 +61,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
61
61
|
- !ruby/object:Gem::Version
|
|
62
62
|
version: '0'
|
|
63
63
|
requirements: []
|
|
64
|
-
rubygems_version: 3.3.
|
|
64
|
+
rubygems_version: 3.3.26
|
|
65
65
|
signing_key:
|
|
66
66
|
specification_version: 4
|
|
67
67
|
summary: Extend Nokogiri with several useful HTML-centric features.
|