erb 4.0.3-java → 4.0.4-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: 7a9ebe94bbcfabcf22cf7691cd790040efed66193bc7d2f887ecb18d586bd0e0
4
- data.tar.gz: 50616b0319e61686011498cb52b362676935f59935d944e24ab599153de76534
3
+ metadata.gz: 821d83da51a3173890406be721cf070117f0c77aee7ff443eb07b51411354fbc
4
+ data.tar.gz: 912b71f197853a716d236e00b443377a778dcf2bc06be22b953eb7d20b1fcd3a
5
5
  SHA512:
6
- metadata.gz: e9f964d635f58a7e60fe0b21b28ec8982a51653beac46c80dadd8406b80808c5aa4912e38976fd74347911e99b4570803c67f0c4d4a61bc06a67c889dcb3213d
7
- data.tar.gz: 0b198abf51c26801b427c80260c30c26f62dd101ecadddc9177c22d76539b4ba4d6caae4dfdcde50b83365b2ca2a39da95b0adf508bb4d4afdee9cca65dea7d5
6
+ metadata.gz: 7f49f29fd211bf37b3dc6afaca92267f629039fabdf86382728238db0614ec580830ebccf2988c139cf41e67e9893143190e27221cbea1b57ac8abbb98a56b19
7
+ data.tar.gz: 1cfb6832ba0bb8ccb75f1b437939b19d982b655f8574a5b05c3eaead31e5869a0a633fef583ffc1feda2aceb0aa95d9be1bd7d9996b48fb3c0e383fc792f15ac
@@ -23,7 +23,7 @@ jobs:
23
23
  fail-fast: false
24
24
  runs-on: ${{ matrix.os }}
25
25
  steps:
26
- - uses: actions/checkout@v3
26
+ - uses: actions/checkout@v4
27
27
  - name: Set up Ruby
28
28
  uses: ruby/setup-ruby@v1
29
29
  with:
data/Gemfile CHANGED
@@ -6,4 +6,5 @@ group :development do
6
6
  gem 'rake'
7
7
  gem 'rake-compiler'
8
8
  gem 'test-unit'
9
+ gem "test-unit-ruby-core"
9
10
  end
data/NEWS.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## 4.0.4
4
+
5
+ * Skip building the C extension for JRuby [#52](https://github.com/ruby/erb/pull/52)
6
+
3
7
  ## 4.0.3
4
8
 
5
9
  * Enable `frozen_string_literal` in all files [#49](https://github.com/ruby/erb/pull/49)
data/Rakefile CHANGED
@@ -16,11 +16,4 @@ else
16
16
  task test: :compile
17
17
  end
18
18
 
19
- task :sync_tool do
20
- require 'fileutils'
21
- FileUtils.cp '../ruby/tool/lib/core_assertions.rb', './test/lib'
22
- FileUtils.cp '../ruby/tool/lib/envutil.rb', './test/lib'
23
- FileUtils.cp '../ruby/tool/lib/find_executable.rb', './test/lib'
24
- end
25
-
26
19
  task default: :test
@@ -1,6 +1,7 @@
1
1
  require 'mkmf'
2
2
 
3
- if RUBY_ENGINE == 'truffleruby'
3
+ case RUBY_ENGINE
4
+ when 'jruby', 'truffleruby'
4
5
  File.write('Makefile', dummy_makefile($srcdir).join)
5
6
  else
6
7
  create_makefile 'erb/escape'
data/lib/erb/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
  class ERB
3
- VERSION = '4.0.3'
3
+ VERSION = '4.0.4'
4
4
  private_constant :VERSION
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: 4.0.3
4
+ version: 4.0.4
5
5
  platform: java
6
6
  authors:
7
7
  - Masatoshi SEKI