process_executer 1.1.2 → 1.2.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: 939beda136b7c1bffc2a3e16edda8083125cc5db3acc49f2dcec7837a96d510b
4
- data.tar.gz: bea06af73eeff96c1583fdc422b0fe4fdd29f0964f10b6e88c9ee8174d94c5b6
3
+ metadata.gz: 7c875872382e447e7af6dfec78af45242baa13c7b832d5c25f3e146bbc2b9f1d
4
+ data.tar.gz: a68da52f9b1dfae542386a0d61abc85cdc0d86ee0471c4893692061db661f4e5
5
5
  SHA512:
6
- metadata.gz: 3cb8172471ed879e039904a731c40f23c0705643b78cfd0df7ce5d4671ae45db2c65308a9cf54416173fb4ff10d87a23e00e93a52b534aa15f453306c04be848
7
- data.tar.gz: 3f25c2cb40a0689a04f26c83d865ddafe35e56cca8d9593f3916c3c5b7b3d41c136f243721978c7b040f9ec4eb53a34902ba01c0877c0dab074102916ddecfc8
6
+ metadata.gz: a0f6b19a6570dab6843b0d76af1839496ae7ff0651a3f485d6465414b3eb6f0d4a78236bc9ae80ad1b4d7e2e43d8c093ef2733e047eaadb27f3c2e7f174e5f82
7
+ data.tar.gz: 65da6657d7b821f2b0641bcad6278ded70fd78c06497dfa93fa67ab52c6bb0b57443fa6aa92b5cc160b68ff3b4b68165208b2ff77eea0f4b50542e1243a62c8e
data/.commitlintrc.yml ADDED
@@ -0,0 +1,16 @@
1
+ ---
2
+ extends: '@commitlint/config-conventional'
3
+
4
+ rules:
5
+ # See: https://commitlint.js.org/reference/rules.html
6
+ #
7
+ # Rules are made up by a name and a configuration array. The configuration array contains:
8
+ #
9
+ # * Severity [0..2]: 0 disable rule, 1 warning if violated, or 2 error if violated
10
+ # * Applicability [always|never]: never inverts the rule
11
+ # * Value: value to use for this rule
12
+ #
13
+ # Run `npx commitlint --print-config` to see the current setting for all rules.
14
+ #
15
+ body-leading-blank: [2, 'always']
16
+ footer-leading-blank: [2, 'always']
data/.husky/commit-msg ADDED
@@ -0,0 +1 @@
1
+ npx --no-install commitlint --edit "$1"
data/.rubocop.yml CHANGED
@@ -1,23 +1,7 @@
1
- AllCops:
2
- NewCops: enable
3
- # Output extra information for each offense to make it easier to diagnose:
4
- DisplayCopNames: true
5
- DisplayStyleGuide: true
6
- ExtraDetails: true
7
- SuggestExtensions: false
8
- # RuboCop enforces rules depending on the oldest version of Ruby which
9
- # your project supports:
10
- TargetRubyVersion: 3.0
11
-
12
- # The default max line length is 80 characters
13
- Layout/LineLength:
14
- Max: 120
1
+ inherit_gem:
2
+ main_branch_shared_rubocop_config: config/rubocop.yml
15
3
 
16
- # The DSL for RSpec and the gemspec file make it very hard to limit block length:
17
- Metrics/BlockLength:
18
- Exclude:
19
- - "spec/**/*_spec.rb"
20
- - "*.gemspec"
21
-
22
- Gemspec/DevelopmentDependencies:
23
- Enabled: false
4
+ AllCops:
5
+ # Pin this project to Ruby 3.1 in case the shared config above is upgraded to 3.2
6
+ # or later.
7
+ TargetRubyVersion: 3.1
data/.tool-versions CHANGED
@@ -1 +1 @@
1
- ruby 3.3.5
1
+ ruby 3.3.5
data/.yardopts CHANGED
@@ -3,4 +3,6 @@
3
3
  --markup-provider=redcarpet
4
4
  --markup markdown
5
5
  - CHANGELOG.md
6
- - LICENSE.md
6
+ - CONTRIBUTING.md
7
+ - RELEASING.md
8
+ - LICENSE.txt
data/CHANGELOG.md CHANGED
@@ -5,25 +5,69 @@ All notable changes to the process_executer gem will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
- ## v1.1.2 (2024-09-26)
9
-
10
- [Full Changelog](https://github.com/main-branch/process_executer/compare/v1.1.1..v1.1.2)
11
-
12
- Changes since v1.1.1:
13
-
14
- * 2006301 Re-add require for 'forwardable'
15
-
16
- ## v1.1.1 (2024-09-25)
17
-
18
- [Full Changelog](https://github.com/main-branch/process_executer/compare/v1.1.0..v1.1.1)
8
+ ## v1.2.0 (2024-10-10)
9
+
10
+ [Full Changelog](https://github.com/main-branch/process_executer/compare/v1.1.2..v1.2.0)
11
+
12
+ Changes since v1.1.2:
13
+
14
+ * 35663c9 chore: reset main branch to 1.x
15
+ * 39913bc build: remove semver pr label check
16
+ * 8ae8e34 build: enforce conventional commit message formatting
17
+ * f5b8c51 Release v2.0.0.pre1
18
+ * 8e15c39 Re-add require for 'forwardable'
19
+ * 4bba06e Fix flakey test that checks for thread to die
20
+ * 83bfd78 Remove unused require for 'forwardable' and 'ostruct'
21
+ * ea3ea3c Use shared Rubocop config
22
+ * ecd2cb5 Update copyright notice in this project
23
+ * 7d5bfe1 Update links in gemspec
24
+ * 797de91 Add Slack badge for this project in README
25
+ * 591b716 Update “Build Status” link the README
26
+ * 2fcd001 Update yardopts with new standard options
27
+ * 4e1de47 Standardize YARD and Markdown Lint configurations
28
+ * 929c680 Set JRuby --debug option when running tests in GitHub Actions workflows
29
+ * 71049cb Finish Integration of simplecov-rspec into the project
30
+ * 4fb44bb Update continuous integration and experimental ruby builds
31
+ * 289645c Depend on v1 of semver_pr_label_check
32
+ * 3c4d988 Update code climate test coverage reporter version
33
+ * 04103b4 Simplify how the experimental ruby builds are triggered
34
+ * 35840a4 Use a reusable workflow for the Semver PR label check
35
+ * 0d887f0 Update code climate test coverage reporter version
36
+ * bb7f73b Rename the experimental build workflow
37
+ * 035ce8a Fix the experimental CI Build workflow
38
+ * 3d739f4 Move CI builds using experimental Rubies to a different workflow
39
+ * c5ef6b0 Integrate simplecov-rspec to ensure code covage in CI builds
40
+ * f33707e Update development dependencies and examples (#45)
41
+
42
+ ## v2.0.0.pre1 (2024-09-26)
43
+
44
+ [Full Changelog](https://github.com/main-branch/process_executer/compare/v1.1.0..v2.0.0.pre1)
19
45
 
20
46
  Changes since v1.1.0:
21
47
 
22
- * c3f063a Use a later version of ruby for development
23
- * d4eeb1e Use latest version of the actions/checkout to v4
24
- * eb4dad7 Fix flakey test on JRuby
25
- * ac9417a Update CI build to run on v1.x branch
26
- * 014e70f Remove unused require for 'forwardable' and 'ostruct' (for v1.x)
48
+ * 8e15c39 Re-add require for 'forwardable'
49
+ * 4bba06e Fix flakey test that checks for thread to die
50
+ * 83bfd78 Remove unused require for 'forwardable' and 'ostruct'
51
+ * ea3ea3c Use shared Rubocop config
52
+ * ecd2cb5 Update copyright notice in this project
53
+ * 7d5bfe1 Update links in gemspec
54
+ * 797de91 Add Slack badge for this project in README
55
+ * 591b716 Update “Build Status” link the README
56
+ * 2fcd001 Update yardopts with new standard options
57
+ * 4e1de47 Standardize YARD and Markdown Lint configurations
58
+ * 929c680 Set JRuby --debug option when running tests in GitHub Actions workflows
59
+ * 71049cb Finish Integration of simplecov-rspec into the project
60
+ * 4fb44bb Update continuous integration and experimental ruby builds
61
+ * 289645c Depend on v1 of semver_pr_label_check
62
+ * 3c4d988 Update code climate test coverage reporter version
63
+ * 04103b4 Simplify how the experimental ruby builds are triggered
64
+ * 35840a4 Use a reusable workflow for the Semver PR label check
65
+ * 0d887f0 Update code climate test coverage reporter version
66
+ * bb7f73b Rename the experimental build workflow
67
+ * 035ce8a Fix the experimental CI Build workflow
68
+ * 3d739f4 Move CI builds using experimental Rubies to a different workflow
69
+ * c5ef6b0 Integrate simplecov-rspec to ensure code covage in CI builds
70
+ * f33707e Update development dependencies and examples (#45)
27
71
 
28
72
  ## v1.1.0 (2024-02-02)
29
73
 
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2022 James Couball
3
+ Copyright (c) 2024 James Couball
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -3,9 +3,12 @@
3
3
  [![Gem Version](https://badge.fury.io/rb/process_executer.svg)](https://badge.fury.io/rb/process_executer)
4
4
  [![Documentation](https://img.shields.io/badge/Documentation-Latest-green)](https://rubydoc.info/gems/process_executer/)
5
5
  [![Change Log](https://img.shields.io/badge/CHANGELOG-Latest-green)](https://rubydoc.info/gems/process_executer/file/CHANGELOG.md)
6
- [![Build Status](https://github.com/main-branch/process_executer/workflows/CI%20Build/badge.svg?branch=main)](https://github.com/main-branch/process_executer/actions?query=workflow%3ACI%20Build)
6
+ [![Build Status](https://github.com/main-branch/process_executer/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/main-branch/process_executer/actions/workflows/continuous-integration.yml)
7
7
  [![Maintainability](https://api.codeclimate.com/v1/badges/0b5c67e5c2a773009cd0/maintainability)](https://codeclimate.com/github/main-branch/process_executer/maintainability)
8
8
  [![Test Coverage](https://api.codeclimate.com/v1/badges/0b5c67e5c2a773009cd0/test_coverage)](https://codeclimate.com/github/main-branch/process_executer/test_coverage)
9
+ [![Conventional
10
+ Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=white)](https://conventionalcommits.org)
11
+ [![Slack](https://img.shields.io/badge/slack-main--branch/process__executer-yellow.svg?logo=slack)](https://main-branch.slack.com/archives/C07NG2BPG8Y)
9
12
 
10
13
  * [Usage](#usage)
11
14
  * [ProcessExecuter::MonitoredPipe](#processexecutermonitoredpipe)
@@ -14,7 +17,8 @@
14
17
  * [Contributing](#contributing)
15
18
  * [Reporting Issues](#reporting-issues)
16
19
  * [Developing](#developing)
17
- * [Submitting Pull Requests](#submitting-pull-requests)
20
+ * [Commit message guidelines](#commit-message-guidelines)
21
+ * [Pull request guidelines](#pull-request-guidelines)
18
22
  * [Releasing](#releasing)
19
23
  * [License](#license)
20
24
 
@@ -116,59 +120,34 @@ allow you to experiment.
116
120
 
117
121
  To install this gem onto your local machine, run `bundle exec rake install`.
118
122
 
119
- ### Submitting Pull Requests
123
+ ### Commit message guidelines
120
124
 
121
- In order for a pull request to be merged, it must be approved by a code owner and
122
- include a semver label.
125
+ All commit messages must follow the [Conventional Commits
126
+ standard](https://www.conventionalcommits.org/en/v1.0.0/). This helps us maintain a
127
+ clear and structured commit history, automate versioning, and generate changelogs
128
+ effectively.
123
129
 
124
- The approval must be done using the Github PR Review process by a code owner defined
125
- in the project's CODEOWNERS file.
130
+ To ensure compliance, this project includes:
126
131
 
127
- The semver label indicates the type of change so that the gem version can be
128
- increments according to semver rules prior to release. One and only one of the
129
- following labels must added to the PR:
132
+ * A git commit-msg hook that validates your commit messages before they are accepted.
130
133
 
131
- * **`major-change`**
134
+ To activate the hook, you must have node installed and run `npm install`.
132
135
 
133
- Use when the PR includes incompatible API or functional changes.
136
+ * A GitHub Actions workflow that will enforce the Conventional Commit standard as
137
+ part of the continuous integration pipeline.
134
138
 
135
- This typically occurs when the changes introduced could break existing code that
136
- depends on this gem. For example, removing a public method, changing a method's
137
- signature, or altering the expected behavior of a method in a way that would
138
- require changes in the dependent code.
139
+ Any commit message that does not conform to the Conventional Commits standard will
140
+ cause the workflow to fail and not allow the PR to be merged.
139
141
 
140
- * **`minor-change`**
142
+ ### Pull request guidelines
141
143
 
142
- Use when the PR adds functionality in a backward-compatible manner.
143
-
144
- This includes adding new features, enhancements, or deprecating existing features
145
- as long as the deprecation itself doesn't break compatibility.
146
-
147
- It's also common to include substantial improvements or optimizations in this
148
- category, as long as they don't alter the expected behavior of the existing API.
149
-
150
- * **`patch-change`**
151
-
152
- Use when the PR includes small user-facing changes that are backward-compatible and
153
- do not introduce new functionality.
154
-
155
- This includes bug fixes or other internal changes that do not affect the API such
156
- as refactoring code, improving performance, or updating user documentation.
157
-
158
- * **`internal-change`**
159
-
160
- Use when the PR includes changes that are NOT user facing and will NOT require a
161
- release.
162
-
163
- This includes updates to developer documentation, comments, GitHub Actions, minor
164
- refactorings, and fixing Rubocop offenses.
144
+ All pull requests must be merged using rebase merges. This ensures that commit
145
+ messages from the feature branch are preserved in the release branch, keeping the
146
+ history clean and meaningful.
165
147
 
166
148
  ### Releasing
167
149
 
168
- To release a new version, first determine the proper semver increment based on the
169
- PRs included in the release.
170
-
171
- Then in the root directory of this project with the `main` branch checked out, run
150
+ In the root directory of this project with the `main` branch checked out, run
172
151
  the following command:
173
152
 
174
153
  ```shell
data/Rakefile CHANGED
@@ -45,14 +45,9 @@ CLEAN << 'rspec-report.xml'
45
45
 
46
46
  require 'rubocop/rake_task'
47
47
 
48
- RuboCop::RakeTask.new do |t|
49
- t.options = %w[
50
- --format progress
51
- --format json --out rubocop-report.json
52
- ]
53
- end
48
+ RuboCop::RakeTask.new
54
49
 
55
- CLEAN << 'rubocop-report.json'
50
+ # YARD
56
51
 
57
52
  unless RUBY_PLATFORM == 'java'
58
53
  # YARD
@@ -2,5 +2,5 @@
2
2
 
3
3
  module ProcessExecuter
4
4
  # The current Gem version
5
- VERSION = '1.1.2'
5
+ VERSION = '1.2.0'
6
6
  end
@@ -23,6 +23,7 @@ module ProcessExecuter
23
23
  # status = ProcessExecuter.spawn('echo hello')
24
24
  # status.exited? # => true
25
25
  # status.success? # => true
26
+ # status.timeout? # => false
26
27
  #
27
28
  # @example with a timeout
28
29
  # status = ProcessExecuter.spawn('sleep 10', timeout: 0.01)
@@ -30,6 +31,7 @@ module ProcessExecuter
30
31
  # status.success? # => nil
31
32
  # status.signaled? # => true
32
33
  # status.termsig # => 9
34
+ # status.timeout? # => true
33
35
  #
34
36
  # @example capturing stdout to a string
35
37
  # stdout = StringIO.new
data/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "devDependencies": {
3
+ "@commitlint/cli": "^19.5.0",
4
+ "@commitlint/config-conventional": "^19.5.0",
5
+ "husky": "^9.1.0"
6
+ },
7
+ "scripts": {
8
+ "postinstall": "husky",
9
+ "prepare": "husky"
10
+ }
11
+ }
@@ -10,16 +10,17 @@ Gem::Specification.new do |spec|
10
10
 
11
11
  spec.summary = 'An API for executing commands in a subprocess'
12
12
  spec.description = 'An API for executing commands in a subprocess'
13
- spec.homepage = 'https://github.com/main-branch/process_executer'
14
13
  spec.license = 'MIT'
15
- spec.required_ruby_version = '>= 3.0.0'
14
+ spec.required_ruby_version = '>= 3.1.0'
16
15
 
17
16
  spec.metadata['allowed_push_host'] = 'https://rubygems.org'
18
17
 
18
+ # Project links
19
+ spec.homepage = "https://github.com/main-branch/#{spec.name}"
19
20
  spec.metadata['homepage_uri'] = spec.homepage
20
- spec.metadata['source_code_uri'] = 'https://github.com/main-branch/process_executer'
21
- spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
21
+ spec.metadata['source_code_uri'] = spec.homepage
22
22
  spec.metadata['documentation_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}"
23
+ spec.metadata['changelog_uri'] = "https://rubydoc.info/gems/#{spec.name}/#{spec.version}/file/CHANGELOG.md"
23
24
 
24
25
  # Specify which files should be added to the gem when it is released.
25
26
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -31,15 +32,21 @@ Gem::Specification.new do |spec|
31
32
  spec.bindir = 'exe'
32
33
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
33
34
  spec.require_paths = ['lib']
35
+ spec.requirements = [
36
+ 'Platform: Mac, Linux, or Windows',
37
+ 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
38
+ ]
34
39
 
35
40
  spec.add_development_dependency 'bundler-audit', '~> 0.9'
36
- spec.add_development_dependency 'create_github_release', '~> 1.1'
37
- spec.add_development_dependency 'rake', '~> 13.1'
38
- spec.add_development_dependency 'rspec', '~> 3.12'
39
- spec.add_development_dependency 'rubocop', '~> 1.59'
41
+ spec.add_development_dependency 'create_github_release', '~> 2.1'
42
+ spec.add_development_dependency 'main_branch_shared_rubocop_config', '~> 0.1'
43
+ spec.add_development_dependency 'rake', '~> 13.2'
44
+ spec.add_development_dependency 'rspec', '~> 3.13'
45
+ spec.add_development_dependency 'rubocop', '~> 1.66'
40
46
  spec.add_development_dependency 'semverify', '~> 0.3'
41
47
  spec.add_development_dependency 'simplecov', '~> 0.22'
42
48
  spec.add_development_dependency 'simplecov-lcov', '~> 0.8'
49
+ spec.add_development_dependency 'simplecov-rspec', '~> 0.3'
43
50
 
44
51
  unless RUBY_PLATFORM == 'java'
45
52
  spec.add_development_dependency 'redcarpet', '~> 3.6'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_executer
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Couball
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-09-26 00:00:00.000000000 Z
11
+ date: 2024-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler-audit
@@ -30,56 +30,70 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '1.1'
33
+ version: '2.1'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '1.1'
40
+ version: '2.1'
41
+ - !ruby/object:Gem::Dependency
42
+ name: main_branch_shared_rubocop_config
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '0.1'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '0.1'
41
55
  - !ruby/object:Gem::Dependency
42
56
  name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - "~>"
46
60
  - !ruby/object:Gem::Version
47
- version: '13.1'
61
+ version: '13.2'
48
62
  type: :development
49
63
  prerelease: false
50
64
  version_requirements: !ruby/object:Gem::Requirement
51
65
  requirements:
52
66
  - - "~>"
53
67
  - !ruby/object:Gem::Version
54
- version: '13.1'
68
+ version: '13.2'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: rspec
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
73
  - - "~>"
60
74
  - !ruby/object:Gem::Version
61
- version: '3.12'
75
+ version: '3.13'
62
76
  type: :development
63
77
  prerelease: false
64
78
  version_requirements: !ruby/object:Gem::Requirement
65
79
  requirements:
66
80
  - - "~>"
67
81
  - !ruby/object:Gem::Version
68
- version: '3.12'
82
+ version: '3.13'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: rubocop
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
87
  - - "~>"
74
88
  - !ruby/object:Gem::Version
75
- version: '1.59'
89
+ version: '1.66'
76
90
  type: :development
77
91
  prerelease: false
78
92
  version_requirements: !ruby/object:Gem::Requirement
79
93
  requirements:
80
94
  - - "~>"
81
95
  - !ruby/object:Gem::Version
82
- version: '1.59'
96
+ version: '1.66'
83
97
  - !ruby/object:Gem::Dependency
84
98
  name: semverify
85
99
  requirement: !ruby/object:Gem::Requirement
@@ -122,6 +136,20 @@ dependencies:
122
136
  - - "~>"
123
137
  - !ruby/object:Gem::Version
124
138
  version: '0.8'
139
+ - !ruby/object:Gem::Dependency
140
+ name: simplecov-rspec
141
+ requirement: !ruby/object:Gem::Requirement
142
+ requirements:
143
+ - - "~>"
144
+ - !ruby/object:Gem::Version
145
+ version: '0.3'
146
+ type: :development
147
+ prerelease: false
148
+ version_requirements: !ruby/object:Gem::Requirement
149
+ requirements:
150
+ - - "~>"
151
+ - !ruby/object:Gem::Version
152
+ version: '0.3'
125
153
  - !ruby/object:Gem::Dependency
126
154
  name: redcarpet
127
155
  requirement: !ruby/object:Gem::Requirement
@@ -177,6 +205,8 @@ executables: []
177
205
  extensions: []
178
206
  extra_rdoc_files: []
179
207
  files:
208
+ - ".commitlintrc.yml"
209
+ - ".husky/commit-msg"
180
210
  - ".markdownlint.yml"
181
211
  - ".rspec"
182
212
  - ".rubocop.yml"
@@ -184,7 +214,7 @@ files:
184
214
  - ".yardopts"
185
215
  - CHANGELOG.md
186
216
  - Gemfile
187
- - LICENSE.md
217
+ - LICENSE.txt
188
218
  - README.md
189
219
  - Rakefile
190
220
  - lib/process_executer.rb
@@ -192,6 +222,7 @@ files:
192
222
  - lib/process_executer/options.rb
193
223
  - lib/process_executer/status.rb
194
224
  - lib/process_executer/version.rb
225
+ - package.json
195
226
  - process_executer.gemspec
196
227
  homepage: https://github.com/main-branch/process_executer
197
228
  licenses:
@@ -200,8 +231,8 @@ metadata:
200
231
  allowed_push_host: https://rubygems.org
201
232
  homepage_uri: https://github.com/main-branch/process_executer
202
233
  source_code_uri: https://github.com/main-branch/process_executer
203
- changelog_uri: https://rubydoc.info/gems/process_executer/1.1.2/file/CHANGELOG.md
204
- documentation_uri: https://rubydoc.info/gems/process_executer/1.1.2
234
+ documentation_uri: https://rubydoc.info/gems/process_executer/1.2.0
235
+ changelog_uri: https://rubydoc.info/gems/process_executer/1.2.0/file/CHANGELOG.md
205
236
  rubygems_mfa_required: 'true'
206
237
  post_install_message:
207
238
  rdoc_options: []
@@ -211,13 +242,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
211
242
  requirements:
212
243
  - - ">="
213
244
  - !ruby/object:Gem::Version
214
- version: 3.0.0
245
+ version: 3.1.0
215
246
  required_rubygems_version: !ruby/object:Gem::Requirement
216
247
  requirements:
217
248
  - - ">="
218
249
  - !ruby/object:Gem::Version
219
250
  version: '0'
220
- requirements: []
251
+ requirements:
252
+ - 'Platform: Mac, Linux, or Windows'
253
+ - 'Ruby: MRI 3.1 or later, TruffleRuby 24 or later, or JRuby 9.4 or later'
221
254
  rubygems_version: 3.5.16
222
255
  signing_key:
223
256
  specification_version: 4