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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dfee953cd85012c3c8240bc501feb8d00d9245f2bdabbf5b10e2295e7e6dcabf
4
- data.tar.gz: 994a27e68a808f1bc75cacfee1945b43af20df4c2e3534f860b5bfb468717a60
3
+ metadata.gz: e56e7cd82573a3fe6d35521507649201653a881c569f5da9643300a1b276d711
4
+ data.tar.gz: 75c07c5897072c7e81fa5a87f86ea877b80858bb239a314062b7cd52f0bc103e
5
5
  SHA512:
6
- metadata.gz: ee75b2511470decbab87a282e112765b5f1cfaf472aaeded16a65c1d38114f5415a613e3f98a633962e2c1314ce46272548f4692fe322f43c75f1034b83fd443
7
- data.tar.gz: 1eb5c1f8bab85ce58ca9d3d685df7289efee95fd3f9eb40652d7d6c3efcdd68621422dd28484ef21f1b795c3d2aca072e5632d049eec7c468f062df9bb5a8f33
6
+ metadata.gz: 0df68917b7223a7f7bd1d296eb6843eeddf44311c71808deda3b632c8757d2e6db4aa80e66d8f7bea148854dfc4f080e2bc57a1bdfdcb363f9dcbc84087df91f
7
+ data.tar.gz: e4d669866194edd81d8e4f8d9abd0a8e874e0117d4d822fc3c662c4ef52269d407275832a4167751f0db809418c54a34e4e10d4afe260813e23eb00fc929ef45
data/CHANGELOG.markdown CHANGED
@@ -1,6 +1,11 @@
1
1
  URI::Tag CHANGE LOG
2
2
  ===================
3
3
 
4
+ 0.0.4
5
+ -----
6
+
7
+ * Follow URI's API change
8
+
4
9
  0.0.3
5
10
  -----
6
11
 
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'
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.3
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: 2023-01-17 00:00:00.000000000 Z
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.4.1
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.