uri-urn 0.0.3 → 0.0.4
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 +5 -5
- data/CHANGELOG.markdown +11 -0
- data/lib/uri/urn.rb +5 -1
- data/uri-urn.gemspec +1 -1
- metadata +7 -8
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 454f72d95de454f71d199373af9904ea1f760fb9628f6aa82c86c6db232cef12
|
|
4
|
+
data.tar.gz: 10b4bdeef3bcad966b9029599cd2dcd3918a2ebea3286e8c82910766c98b28a3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7216deacd54537f4a8eedb5997af46aa56e5d9cffb8bf55f9d132f429ed3ee6902c39f5bdd132a0afbdd1291818a98f4d9cb0579c31f00c4b51c8a2f3c72e9eb
|
|
7
|
+
data.tar.gz: 1ce14d116d313fc5a202915c696092283b0cf3c574393f45299dba52700ac1b6ace296f8f796f05b3e553bbe7c4abeed157542b0ac295f5cad5ce8facd1224c2
|
data/CHANGELOG.markdown
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
URI::URN Changelog
|
|
2
2
|
==================
|
|
3
3
|
|
|
4
|
+
0.0.4
|
|
5
|
+
-----
|
|
6
|
+
|
|
7
|
+
* Follow URI's API change
|
|
8
|
+
|
|
9
|
+
0.0.3
|
|
10
|
+
-----
|
|
11
|
+
|
|
12
|
+
* Load uri/urn/isbn when loading uri/urn
|
|
13
|
+
* Fix a but that raises `NoMethodError` when `URI::URN.new`'s arguments is invalid
|
|
14
|
+
|
|
4
15
|
0.0.2
|
|
5
16
|
-----
|
|
6
17
|
|
data/lib/uri/urn.rb
CHANGED
data/uri-urn.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: uri-urn
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- KITAITI Makoto
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubygems-tasks
|
|
@@ -52,7 +52,7 @@ homepage: https://gitorious.org/uri-ext
|
|
|
52
52
|
licenses:
|
|
53
53
|
- Ruby
|
|
54
54
|
metadata: {}
|
|
55
|
-
post_install_message:
|
|
55
|
+
post_install_message:
|
|
56
56
|
rdoc_options: []
|
|
57
57
|
require_paths:
|
|
58
58
|
- lib
|
|
@@ -67,12 +67,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
requirements: []
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
signing_key:
|
|
70
|
+
rubygems_version: 3.4.1
|
|
71
|
+
signing_key:
|
|
73
72
|
specification_version: 4
|
|
74
73
|
summary: Adds URN Scheme support to URI lib.
|
|
75
74
|
test_files:
|
|
76
75
|
- test/uri/test_urn.rb
|
|
77
|
-
- test/uri/urn/test_uuid.rb
|
|
78
76
|
- test/uri/urn/test_isbn.rb
|
|
77
|
+
- test/uri/urn/test_uuid.rb
|