test-unit-runner-junitxml 1.0.0 → 1.0.1

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: 1d80ec066b99b905b45f634d5f5c77de818136eb4840cc460bc5cd94e1c4b2a6
4
- data.tar.gz: a15d2feb6b5cd2cbfc15e9a5187c6f5fd8ef3991bbf4235123ed74fb23553006
3
+ metadata.gz: 61320d355fe2adcd355bcc18781b9ed175e2af2c24e9c629f0514980298179c7
4
+ data.tar.gz: d1948d49d59b793de0d14a0ce3315a4523b6c94754b1a8bd421dda9c18820be2
5
5
  SHA512:
6
- metadata.gz: 47fe6a5c24941dd8b685e0265008384d5728f239695303371e8bdf356c0c984dbd11dae4bc4a6ffa8eafad37bab796b9ba29dce3aa73f239b13b585cd03549eb
7
- data.tar.gz: 7c42cc465c212a4d6fc7ff40485e765e0fe0b200d3a2bb8026d049f40c65518e1a4010c4261d6827ec8fb8ecb0c6aa143cc25394660a4062cc2d0cc87b18003e
6
+ metadata.gz: f79d7c300e10c6c74bf462db0c1004197cb04eefc185a6cea4abd276ab874cb28ac1881b7da9a1593337542ca809e4093598f28cbc20f4a1a9918d1ae97526fc
7
+ data.tar.gz: bc9343cbf04268b2a71c82b637eafaefbc04170bfdd2568a94e04bb41f217ec689ca4d514b90e0b332a58223bfa40d48d1b7df365b03cafc25111833ba41d658
@@ -0,0 +1,27 @@
1
+ name: Release
2
+ on:
3
+ push:
4
+ tags:
5
+ - "v*"
6
+ jobs:
7
+ push:
8
+ name: Push gem to RubyGems.org
9
+ runs-on: ubuntu-latest
10
+
11
+ permissions:
12
+ id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
13
+ contents: write # IMPORTANT: this permission is required for `rake release` to push the release tag
14
+
15
+ environment: release
16
+
17
+ steps:
18
+ # Set up
19
+ - uses: actions/checkout@v4.2.2
20
+ - name: Set up Ruby
21
+ uses: ruby/setup-ruby@v1
22
+ with:
23
+ bundler-cache: true
24
+ ruby-version: ruby
25
+
26
+ # Release
27
+ - uses: rubygems/release-gem@v1.1.1
@@ -28,13 +28,9 @@ jobs:
28
28
  runs-on: ${{ matrix.os }}
29
29
  # continue-on-error: ${{ endsWith(matrix.ruby, 'head') }}
30
30
  steps:
31
- - uses: actions/checkout@v3
31
+ - uses: actions/checkout@v4
32
32
  - uses: ruby/setup-ruby@v1
33
33
  with:
34
34
  ruby-version: ${{ matrix.ruby }}
35
35
  bundler-cache: true
36
- # - run: bundle install
37
- - if: matrix.ruby != 'jruby'
38
- run: bundle exec rake test
39
- - if: matrix.ruby == 'jruby'
40
- run: bundle exec rake test TESTOPTS='--ignore-testcase=TestXmlMultibyteName'
36
+ - run: bundle exec rake test
@@ -2,7 +2,7 @@ module Test
2
2
  module Unit
3
3
  module Runner
4
4
  module Junitxml
5
- VERSION = "1.0.0"
5
+ VERSION = "1.0.1"
6
6
  end
7
7
  end
8
8
  end
@@ -9,17 +9,12 @@ Gem::Specification.new do |spec|
9
9
  spec.email = ["kenichi@ice.email.ne.jp"]
10
10
 
11
11
  spec.summary = %q{A test-unit runner that reports test result in JUnit XML format.}
12
- #spec.description = %q{TODO: Write a longer description or delete this line.}
13
- spec.homepage = "https://github.com/kenichiice/test-unit-runner-junitxml"
12
+ spec.homepage = "https://github.com/test-unit/test-unit-runner-junitxml"
14
13
  spec.license = "MIT"
15
14
 
16
- # Specify which files should be added to the gem when it is released.
17
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
15
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
16
  `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
17
  end
21
- #spec.bindir = "exe"
22
- #spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
18
  spec.require_paths = ["lib"]
24
19
 
25
20
  spec.add_development_dependency "bundler"
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: test-unit-runner-junitxml
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OGAWA KenIchi
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-06-20 00:00:00.000000000 Z
10
+ date: 2025-03-25 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: bundler
@@ -66,13 +65,13 @@ dependencies:
66
65
  - - ">="
67
66
  - !ruby/object:Gem::Version
68
67
  version: '0'
69
- description:
70
68
  email:
71
69
  - kenichi@ice.email.ne.jp
72
70
  executables: []
73
71
  extensions: []
74
72
  extra_rdoc_files: []
75
73
  files:
74
+ - ".github/workflows/release.yml"
76
75
  - ".github/workflows/test.yml"
77
76
  - ".gitignore"
78
77
  - Gemfile
@@ -85,11 +84,10 @@ files:
85
84
  - lib/test/unit/ui/junitxml/testrunner.rb
86
85
  - lib/test/unit/ui/junitxml/xml.erb
87
86
  - test-unit-runner-junitxml.gemspec
88
- homepage: https://github.com/kenichiice/test-unit-runner-junitxml
87
+ homepage: https://github.com/test-unit/test-unit-runner-junitxml
89
88
  licenses:
90
89
  - MIT
91
90
  metadata: {}
92
- post_install_message:
93
91
  rdoc_options: []
94
92
  require_paths:
95
93
  - lib
@@ -104,8 +102,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
104
102
  - !ruby/object:Gem::Version
105
103
  version: '0'
106
104
  requirements: []
107
- rubygems_version: 3.3.3
108
- signing_key:
105
+ rubygems_version: 3.6.2
109
106
  specification_version: 4
110
107
  summary: A test-unit runner that reports test result in JUnit XML format.
111
108
  test_files: []