unpoly-rails 3.6.1 → 3.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -52,7 +52,7 @@ module Unpoly
52
52
  define_method "#{method}_request_header_accessed!" do
53
53
  return unless vary?
54
54
  header_name = send("#{method}_request_header_name")
55
- earlier_varies = response.headers['Vary']&.split(/\s*,\s*/) || []
55
+ earlier_varies = response.headers['Vary']&.split(',')&.map(&:strip) || []
56
56
  response.headers['Vary'] = (earlier_varies | [header_name]).join(', ')
57
57
  end
58
58
 
@@ -384,7 +384,8 @@ module Unpoly
384
384
  # The user may have chosen to not reveal their target for better
385
385
  # cacheability (see up.network.config#requestMetaKeys).
386
386
  if up? && frontend_target.present?
387
- parts = frontend_target.split(/\s*,\s*/)
387
+ parts = frontend_target.split(',')&.map(&:strip)
388
+
388
389
  parts.any? do |part|
389
390
  if part == tested_target
390
391
  true
@@ -3,6 +3,6 @@ module Unpoly
3
3
  ##
4
4
  # The current version of the unpoly-rails gem.
5
5
  # The first 3 digits should match the version of the Unpoly frontend code.
6
- VERSION = '3.6.1'
6
+ VERSION = '3.7.0'
7
7
  end
8
8
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: unpoly-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.1
4
+ version: 3.7.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henning Koch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-08 00:00:00.000000000 Z
11
+ date: 2024-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -157,7 +157,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
157
157
  - !ruby/object:Gem::Version
158
158
  version: '0'
159
159
  requirements: []
160
- rubygems_version: 3.2.16
160
+ rubygems_version: 3.2.5
161
161
  signing_key:
162
162
  specification_version: 4
163
163
  summary: Rails bindings for Unpoly, the unobtrusive JavaScript framework