uri-tag 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 +4 -4
- data/CHANGELOG.markdown +5 -0
- data/lib/uri/tag.rb +4 -4
- data/uri-tag.gemspec +1 -1
- metadata +3 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e56e7cd82573a3fe6d35521507649201653a881c569f5da9643300a1b276d711
|
4
|
+
data.tar.gz: 75c07c5897072c7e81fa5a87f86ea877b80858bb239a314062b7cd52f0bc103e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0df68917b7223a7f7bd1d296eb6843eeddf44311c71808deda3b632c8757d2e6db4aa80e66d8f7bea148854dfc4f080e2bc57a1bdfdcb363f9dcbc84087df91f
|
7
|
+
data.tar.gz: e4d669866194edd81d8e4f8d9abd0a8e874e0117d4d822fc3c662c4ef52269d407275832a4167751f0db809418c54a34e4e10d4afe260813e23eb00fc929ef45
|
data/CHANGELOG.markdown
CHANGED
data/lib/uri/tag.rb
CHANGED
@@ -4,13 +4,13 @@ module URI
|
|
4
4
|
class Tag < Generic
|
5
5
|
COMPONENT = [:scheme, :authority, :date, :specific, :fragment].freeze
|
6
6
|
|
7
|
-
DNSCOMP_PATTERN = "(?:[#{PATTERN::ALNUM}](?:[#{PATTERN::ALNUM}|\\-]*[#{PATTERN::ALNUM}])?)".freeze
|
7
|
+
DNSCOMP_PATTERN = "(?:[#{URI::PATTERN::ALNUM}](?:[#{URI::PATTERN::ALNUM}|\\-]*[#{URI::PATTERN::ALNUM}])?)".freeze
|
8
8
|
DNSNAME_PATTERN = "(?:#{DNSCOMP_PATTERN}(?:\\.#{DNSCOMP_PATTERN})*)".freeze
|
9
|
-
AUTHORITY_PATTERN = "(?:[#{PATTERN::ALNUM}|\\-\\._]+@)?#{DNSNAME_PATTERN}".freeze
|
9
|
+
AUTHORITY_PATTERN = "(?:[#{URI::PATTERN::ALNUM}|\\-\\._]+@)?#{DNSNAME_PATTERN}".freeze
|
10
10
|
DATE_PATTERN = '\d{4}(?:\-\d{2}(?:\-\d{2})?)?'.freeze
|
11
|
-
UNRESERVED_PATTERN = "#{PATTERN::ALNUM}\\-\\._~".freeze
|
11
|
+
UNRESERVED_PATTERN = "#{URI::PATTERN::ALNUM}\\-\\._~".freeze
|
12
12
|
SUB_DELIMS_PATTERN = '!$&\'\(\)*+,;='.freeze
|
13
|
-
PCHAR_PATTERN = "#{UNRESERVED_PATTERN}#{PATTERN::ESCAPED}#{SUB_DELIMS_PATTERN}:@".freeze
|
13
|
+
PCHAR_PATTERN = "#{UNRESERVED_PATTERN}#{URI::PATTERN::ESCAPED}#{SUB_DELIMS_PATTERN}:@".freeze
|
14
14
|
SPECIFIC_PATTERN = "[#{PCHAR_PATTERN}/?]*".freeze
|
15
15
|
TAG_REGEXP = Regexp.new("
|
16
16
|
\\A
|
data/uri-tag.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "uri-tag"
|
3
|
-
spec.version = '0.0.
|
3
|
+
spec.version = '0.0.4'
|
4
4
|
spec.authors = ["KITAITI Makoto"]
|
5
5
|
spec.email = ["KitaitiMakoto@gmail.com"]
|
6
6
|
spec.summary = %q{This library extends standard bundled URI library to parse and build tag scheme URI defined in RFC 4151.}
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: uri-tag
|
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:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-29 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
13
12
|
- !ruby/object:Gem::Dependency
|
14
13
|
name: bundler
|
@@ -66,7 +65,6 @@ dependencies:
|
|
66
65
|
- - ">="
|
67
66
|
- !ruby/object:Gem::Version
|
68
67
|
version: '0'
|
69
|
-
description:
|
70
68
|
email:
|
71
69
|
- KitaitiMakoto@gmail.com
|
72
70
|
executables: []
|
@@ -89,7 +87,6 @@ homepage: https://gitorious.org/uri-ext
|
|
89
87
|
licenses:
|
90
88
|
- Ruby
|
91
89
|
metadata: {}
|
92
|
-
post_install_message:
|
93
90
|
rdoc_options: []
|
94
91
|
require_paths:
|
95
92
|
- lib
|
@@ -104,8 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
101
|
- !ruby/object:Gem::Version
|
105
102
|
version: '0'
|
106
103
|
requirements: []
|
107
|
-
rubygems_version: 3.
|
108
|
-
signing_key:
|
104
|
+
rubygems_version: 3.6.6
|
109
105
|
specification_version: 4
|
110
106
|
summary: This library extends standard bundled URI library to parse and build tag
|
111
107
|
scheme URI defined in RFC 4151.
|