nokogiri-html-ext 1.1.0 → 1.1.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/README.md +5 -4
- data/nokogiri-html-ext.gemspec +6 -4
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0264a1818e0cad9bbcef39ba356c658de032d0bdaad3403d99e7725b59b7edf4
|
4
|
+
data.tar.gz: 488934e92cc47e8275f4b13b461d2ecaf51f02c59efb7c9d3bb86103eee88fe7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 844f5305a5e7974c22fb654dfebe96dfc2f9135d24a4927301fc7434e69b69e2a8af21c7c40d17fcdf5f213c0884d885bea3843d1cf6869d3871b20b208cda6f
|
7
|
+
data.tar.gz: 91d62b19ab9385e0b44e80bfc8315d472b87cb3e64b4514279e37558cec0101ee777795dea5561c9ad14b501aab4b757c8668ed504344342261c8260751c1d1a
|
data/README.md
CHANGED
@@ -4,18 +4,19 @@
|
|
4
4
|
|
5
5
|
[](https://rubygems.org/gems/nokogiri-html-ext)
|
6
6
|
[](https://rubygems.org/gems/nokogiri-html-ext)
|
7
|
+
[](https://codeberg.org/jgarber/nokogiri-html-ext)
|
7
8
|
|
8
9
|
## Key features
|
9
10
|
|
10
11
|
- Resolves all relative URLs in a Nokogiri-parsed HTML document.
|
11
12
|
- Adds helpers for getting and setting a document's `<base>` element's `href` attribute.
|
12
|
-
- Supports Ruby
|
13
|
+
- Supports Ruby 3.1 and newer
|
13
14
|
|
14
15
|
## Getting Started
|
15
16
|
|
16
|
-
Before installing and using nokogiri-html-ext, you'll want to have [Ruby](https://www.ruby-lang.org)
|
17
|
+
Before installing and using nokogiri-html-ext, you'll want to have [Ruby](https://www.ruby-lang.org) 3.1 (or newer) installed. Using 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) is recommended.
|
17
18
|
|
18
|
-
nokogiri-html-ext is developed using Ruby
|
19
|
+
nokogiri-html-ext is developed using Ruby 3.1 and is tested against additional Ruby versions using [Forgejo Actions](https://codeberg.org/jgarber/nokogiri-html-ext/actions).
|
19
20
|
|
20
21
|
## Installation
|
21
22
|
|
@@ -140,4 +141,4 @@ nokogiri-html-ext is written and maintained by [Jason Garber](https://sixtwothre
|
|
140
141
|
|
141
142
|
## License
|
142
143
|
|
143
|
-
nokogiri-html-ext is freely available under the MIT License.
|
144
|
+
nokogiri-html-ext is freely available under the [MIT License](https://opensource.org/license/MIT).
|
data/nokogiri-html-ext.gemspec
CHANGED
@@ -4,7 +4,7 @@ Gem::Specification.new do |spec|
|
|
4
4
|
spec.required_ruby_version = ">= 3.1"
|
5
5
|
|
6
6
|
spec.name = "nokogiri-html-ext"
|
7
|
-
spec.version = "1.1.
|
7
|
+
spec.version = "1.1.1"
|
8
8
|
spec.authors = ["Jason Garber"]
|
9
9
|
spec.email = ["jason@sixtwothree.org"]
|
10
10
|
|
@@ -20,10 +20,12 @@ Gem::Specification.new do |spec|
|
|
20
20
|
spec.require_paths = ["lib"]
|
21
21
|
|
22
22
|
spec.metadata = {
|
23
|
-
"bug_tracker_uri"
|
24
|
-
"changelog_uri"
|
23
|
+
"bug_tracker_uri" => "#{spec.homepage}/issues",
|
24
|
+
"changelog_uri" => "#{spec.homepage}/releases/tag/v#{spec.version}",
|
25
|
+
"documentation_uri" => "https://rubydoc.info/gems/#{spec.name}/#{spec.version}",
|
26
|
+
"homepage_uri" => spec.homepage,
|
25
27
|
"rubygems_mfa_required" => "true",
|
26
|
-
"source_code_uri"
|
28
|
+
"source_code_uri" => "#{spec.homepage}/src/tag/v#{spec.version}",
|
27
29
|
}
|
28
30
|
|
29
31
|
spec.add_dependency "nokogiri", "~> 1.18"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nokogiri-html-ext
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Garber
|
@@ -41,9 +41,11 @@ licenses:
|
|
41
41
|
- MIT
|
42
42
|
metadata:
|
43
43
|
bug_tracker_uri: https://codeberg.org/jgarber/nokogiri-html-ext/issues
|
44
|
-
changelog_uri: https://codeberg.org/jgarber/nokogiri-html-ext/releases/tag/v1.1.
|
44
|
+
changelog_uri: https://codeberg.org/jgarber/nokogiri-html-ext/releases/tag/v1.1.1
|
45
|
+
documentation_uri: https://rubydoc.info/gems/nokogiri-html-ext/1.1.1
|
46
|
+
homepage_uri: https://codeberg.org/jgarber/nokogiri-html-ext
|
45
47
|
rubygems_mfa_required: 'true'
|
46
|
-
source_code_uri: https://codeberg.org/jgarber/nokogiri-html-ext/src/tag/v1.1.
|
48
|
+
source_code_uri: https://codeberg.org/jgarber/nokogiri-html-ext/src/tag/v1.1.1
|
47
49
|
rdoc_options: []
|
48
50
|
require_paths:
|
49
51
|
- lib
|