erb 6.0.0-java → 6.0.1-java

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: ba1b9709ae5687dafc656b4b7cfc3321310b6861160c17fa670cd3c6469fa9d1
4
- data.tar.gz: cb34212a548f3b1ea10ca1f07ed21f53729fd35cc9171799db67d558c857c4d0
3
+ metadata.gz: abb1d9799f41fe7cd8673ecae3bc691df9644e927c759f572d865c65bb539d4c
4
+ data.tar.gz: eadca2dac2ffb305bb33768062e4ccc2d28b4009d2277e0124baa4cd1895c287
5
5
  SHA512:
6
- metadata.gz: 397d22d7c008018e40c489bb4bb7bbaf4c765457534c07f580b7b86d7f279a2aee3ed510c5df5dca9b35d403e7feb942f0273531b2561a8a9264aba7a77a98cf
7
- data.tar.gz: c578aa4a8db6d5dbf05d98f90e758b71459c954f23bae1498d9ae97c81b9a28d039c27ee634c0b4b2b6a67c8abbc2e0df912b2a7b8bfa2a2974c2dfd39dcc276
6
+ metadata.gz: 465d5f29fab99f1f96e0cac13161933aa4788a7e4b6b786ad71e5b3337fff90dd1b29aaa1d59a8c13a7936d771640834384d5d96c59e2986ad8cbebf8677dd13
7
+ data.tar.gz: 0f7a7bd1c6e8cd5e88ba5ce297ef057fa29c69c021dfa8f1b9ec3d14a2bd67d16a6231244a85d2d819938acff111fd95a873d4b97f7fefbd7faadad55083009f
@@ -27,11 +27,11 @@ jobs:
27
27
 
28
28
  steps:
29
29
  - name: Harden Runner
30
- uses: step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
30
+ uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
31
31
  with:
32
32
  egress-policy: audit
33
33
 
34
- - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
34
+ - uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
35
35
 
36
36
  - name: Set up Ruby
37
37
  uses: ruby/setup-ruby@d5126b9b3579e429dd52e51e68624dda2e05be25 # v1.267.0
@@ -8,7 +8,7 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
  if: ${{ github.repository_owner == 'ruby' }}
10
10
  steps:
11
- - uses: actions/checkout@v5
11
+ - uses: actions/checkout@v6
12
12
 
13
13
  - name: Create GitHub App token
14
14
  id: app-token
@@ -23,7 +23,7 @@ jobs:
23
23
  fail-fast: false
24
24
  runs-on: ${{ matrix.os }}
25
25
  steps:
26
- - uses: actions/checkout@v5
26
+ - uses: actions/checkout@v6
27
27
  - name: Set up Ruby
28
28
  uses: ruby/setup-ruby@v1
29
29
  with:
data/NEWS.md CHANGED
@@ -1,4 +1,8 @@
1
- # Change Lo
1
+ # Changelog
2
+
3
+ ## 6.0.1
4
+
5
+ * Freeze `ERB::Compiler::TrimScanner::ERB_STAG` for Ractor compatibility
2
6
 
3
7
  ## 6.0.0
4
8
 
data/lib/erb/compiler.rb CHANGED
@@ -225,7 +225,7 @@ class ERB::Compiler # :nodoc:
225
225
  end
226
226
  end
227
227
 
228
- ERB_STAG = %w(<%= <%# <%)
228
+ ERB_STAG = %w(<%= <%# <%).freeze
229
229
  def is_erb_stag?(s)
230
230
  ERB_STAG.member?(s)
231
231
  end
data/lib/erb/util.rb CHANGED
@@ -9,7 +9,7 @@
9
9
  require 'cgi/escape'
10
10
 
11
11
  # Load or define ERB::Escape#html_escape.
12
- # We don't build the C extention 'cgi/escape' for JRuby, TruffleRuby, and WASM.
12
+ # We don't build the C extension 'cgi/escape' for JRuby, TruffleRuby, and WASM.
13
13
  # miniruby (used by CRuby build scripts) also fails to load erb/escape.so.
14
14
  begin
15
15
  require 'erb/escape'
data/lib/erb/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  class ERB
3
3
  # The string \ERB version.
4
- VERSION = '6.0.0'
4
+ VERSION = '6.0.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: erb
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: java
6
6
  authors:
7
7
  - Masatoshi SEKI
@@ -54,7 +54,7 @@ licenses:
54
54
  metadata:
55
55
  homepage_uri: https://github.com/ruby/erb
56
56
  source_code_uri: https://github.com/ruby/erb
57
- changelog_uri: https://github.com/ruby/erb/blob/v6.0.0/NEWS.md
57
+ changelog_uri: https://github.com/ruby/erb/blob/v6.0.1/NEWS.md
58
58
  rdoc_options: []
59
59
  require_paths:
60
60
  - lib