link-header-parser 5.1.1 → 6.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a576e388888b964a07fa22c8534fdf8020238ff733e96a611f947f469305f31f
4
- data.tar.gz: c5c874503c7341a8a3a8654f236390d66adfafba6f1a74ec39b4399aec47582a
3
+ metadata.gz: ab2f4b179db55bc5037418bbfb6f05e5c761c5e077fe4157e78a06b3014fc72d
4
+ data.tar.gz: 716a3e1599e166ccfece4e7d59d8d42bf0d33fcb893760b5232ac97ac0cf23d5
5
5
  SHA512:
6
- metadata.gz: cc06ba47889f30fcebb6232aa4e0138b9b679759a7f7e3e9720f492be487d42b42dae801ec00d13fd868a3542ee19c387718f51d3eac3583d3678d92ea00b4ce
7
- data.tar.gz: 12e378f1aa1877ae5a3979029fdf55b79ba7722ba3854c431dd416c0ec2c108ea62b937477439912036b7b84d948318bb5fe2f2b843b9db0ca69983c6cb535f6
6
+ metadata.gz: 1c8d6a2845fe75c0e5c64c62c67a3e797f88e53d2e035a40a04ec00d4fdf5c45d39321eb95d49e818e6cf593e4db9f06655e40e9e1599f230870c3e96716bbdc
7
+ data.tar.gz: 3428ca930309fe78d5baa05deb648d76d3980578490e8e9e197066bddecb5f5beb2c7a26cef4f37d386fc2878b5f2f9d42c715146d352f7172da0db7917a1988
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Changelog
2
2
 
3
+ > [!NOTE]
4
+ > From v6.0.0, changes are documented using [GitHub Releases](https://github.com/jgarber623/link-header-parser-ruby/releases). For a given release, metadata on RubyGems.org will link to that version's Release page.
5
+
3
6
  ## 5.1.1 / 2024-01-01
4
7
 
5
8
  - RuboCop: Style/WordArray (7b5964f)
data/README.md CHANGED
@@ -8,9 +8,9 @@
8
8
 
9
9
  ## Getting Started
10
10
 
11
- Before installing and using link-header-parser-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 2.7 (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.
11
+ Before installing and using link-header-parser-ruby, you'll want to have [Ruby](https://www.ruby-lang.org) 3.0 (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.
12
12
 
13
- link-header-parser-ruby is developed using Ruby 2.7.8 and is tested against additional Ruby versions using [GitHub Actions](https://github.com/jgarber623/link-header-parser-ruby/actions).
13
+ link-header-parser-ruby is developed using Ruby 3.3.1 and is tested against additional Ruby versions using [GitHub Actions](https://github.com/jgarber623/link-header-parser-ruby/actions).
14
14
 
15
15
  ## Installation
16
16
 
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "forwardable"
4
+ require "uri"
4
5
 
5
6
  require_relative "link_header_parser/version"
6
7
 
@@ -2,10 +2,10 @@
2
2
 
3
3
  module LinkHeaderParser
4
4
  class LinkHeader
5
- FIELD_VALUE_REGEXP_PATTERN = /^\s*<\s*(?<target_string>[^>]+)\s*>\s*(?<parameters>;\s*.*)$/.freeze
5
+ FIELD_VALUE_REGEXP_PATTERN = /^\s*<\s*(?<target_string>[^>]+)\s*>\s*(?<parameters>;\s*.*)$/
6
6
  private_constant :FIELD_VALUE_REGEXP_PATTERN
7
7
 
8
- PARAMETERS_REGEXP_PATTERN = /(?<!;)\s*[^;]+/.freeze
8
+ PARAMETERS_REGEXP_PATTERN = /(?<!;)\s*[^;]+/
9
9
  private_constant :PARAMETERS_REGEXP_PATTERN
10
10
 
11
11
  # The +String+ value used to create this {LinkHeader}.
@@ -2,7 +2,7 @@
2
2
 
3
3
  module LinkHeaderParser
4
4
  class LinkHeaderParameter
5
- PARAMETER_REGEXP_PATTERN = /^(?<name>.+?)(?:="?(?<value>.*?)"?)?$/.freeze
5
+ PARAMETER_REGEXP_PATTERN = /^(?<name>.+?)(?:="?(?<value>.*?)"?)?$/
6
6
  private_constant :PARAMETER_REGEXP_PATTERN
7
7
 
8
8
  # The +String+ value used to create this {LinkHeaderParameter}.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LinkHeaderParser
4
- VERSION = "5.1.1"
4
+ VERSION = "6.0.0"
5
5
  end
@@ -3,7 +3,7 @@
3
3
  require_relative "lib/link_header_parser/version"
4
4
 
5
5
  Gem::Specification.new do |spec|
6
- spec.required_ruby_version = ">= 2.7"
6
+ spec.required_ruby_version = ">= 3.0"
7
7
 
8
8
  spec.name = "link-header-parser"
9
9
  spec.version = LinkHeaderParser::VERSION
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: link-header-parser
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.1
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jason Garber
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-01 00:00:00.000000000 Z
11
+ date: 2024-05-08 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Parse HTTP Link headers.
14
14
  email:
@@ -31,9 +31,9 @@ licenses:
31
31
  - MIT
32
32
  metadata:
33
33
  bug_tracker_uri: https://github.com/jgarber623/link-header-parser-ruby/issues
34
- changelog_uri: https://github.com/jgarber623/link-header-parser-ruby/blob/v5.1.1/CHANGELOG.md
34
+ changelog_uri: https://github.com/jgarber623/link-header-parser-ruby/blob/v6.0.0/CHANGELOG.md
35
35
  rubygems_mfa_required: 'true'
36
- source_code_uri: https://github.com/jgarber623/link-header-parser-ruby/tree/v5.1.1
36
+ source_code_uri: https://github.com/jgarber623/link-header-parser-ruby/tree/v6.0.0
37
37
  post_install_message:
38
38
  rdoc_options: []
39
39
  require_paths:
@@ -42,14 +42,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
42
42
  requirements:
43
43
  - - ">="
44
44
  - !ruby/object:Gem::Version
45
- version: '2.7'
45
+ version: '3.0'
46
46
  required_rubygems_version: !ruby/object:Gem::Requirement
47
47
  requirements:
48
48
  - - ">="
49
49
  - !ruby/object:Gem::Version
50
50
  version: '0'
51
51
  requirements: []
52
- rubygems_version: 3.1.6
52
+ rubygems_version: 3.5.9
53
53
  signing_key:
54
54
  specification_version: 4
55
55
  summary: Parse HTTP Link headers.