iri 0.10.0 → 0.11.0
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/.0pdd.yml +2 -21
- data/.github/workflows/actionlint.yml +4 -22
- data/.github/workflows/codecov.yml +5 -22
- data/.github/workflows/copyrights.yml +5 -22
- data/.github/workflows/markdown-lint.yml +5 -22
- data/.github/workflows/pdd.yml +4 -21
- data/.github/workflows/rake.yml +4 -23
- data/.github/workflows/reuse.yml +19 -0
- data/.github/workflows/typos.yml +19 -0
- data/.github/workflows/xcop.yml +4 -21
- data/.github/workflows/yamllint.yml +4 -21
- data/.gitignore +7 -2
- data/.rubocop.yml +5 -24
- data/.rultor.yml +4 -22
- data/Gemfile +13 -27
- data/Gemfile.lock +54 -37
- data/LICENSES/MIT.txt +21 -0
- data/README.md +9 -9
- data/REUSE.toml +36 -0
- data/Rakefile +8 -35
- data/iri.gemspec +3 -22
- data/lib/iri.rb +229 -98
- data/test/test__helper.rb +25 -20
- data/test/test_iri.rb +84 -23
- metadata +7 -6
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: iri
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Yegor Bugayenko
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: Class Iri helps you build a URI and then modify its parts via a simple
|
14
13
|
immutable fluent interface. It always returns a new object instead of changing the
|
@@ -27,6 +26,8 @@ files:
|
|
27
26
|
- ".github/workflows/markdown-lint.yml"
|
28
27
|
- ".github/workflows/pdd.yml"
|
29
28
|
- ".github/workflows/rake.yml"
|
29
|
+
- ".github/workflows/reuse.yml"
|
30
|
+
- ".github/workflows/typos.yml"
|
30
31
|
- ".github/workflows/xcop.yml"
|
31
32
|
- ".github/workflows/yamllint.yml"
|
32
33
|
- ".gitignore"
|
@@ -36,7 +37,9 @@ files:
|
|
36
37
|
- Gemfile
|
37
38
|
- Gemfile.lock
|
38
39
|
- LICENSE.txt
|
40
|
+
- LICENSES/MIT.txt
|
39
41
|
- README.md
|
42
|
+
- REUSE.toml
|
40
43
|
- Rakefile
|
41
44
|
- iri.gemspec
|
42
45
|
- lib/iri.rb
|
@@ -49,7 +52,6 @@ licenses:
|
|
49
52
|
- MIT
|
50
53
|
metadata:
|
51
54
|
rubygems_mfa_required: 'true'
|
52
|
-
post_install_message:
|
53
55
|
rdoc_options:
|
54
56
|
- "--charset=UTF-8"
|
55
57
|
require_paths:
|
@@ -65,8 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
65
67
|
- !ruby/object:Gem::Version
|
66
68
|
version: '0'
|
67
69
|
requirements: []
|
68
|
-
rubygems_version: 3.
|
69
|
-
signing_key:
|
70
|
+
rubygems_version: 3.6.7
|
70
71
|
specification_version: 4
|
71
72
|
summary: Simple Immutable Ruby URI Builder
|
72
73
|
test_files: []
|