toys 0.14.2 → 0.14.4
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 +4 -4
- data/CHANGELOG.md +12 -0
- data/core-docs/toys/core.rb +1 -1
- data/lib/toys/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1d83f39b676bc473d96ce88a0595b5bf43cebadda8191e7c50d34b2e924d1ca
|
|
4
|
+
data.tar.gz: a985ecb1929c1cc5283d383b5ef294f485cd9375ba95cfccca43ab45a36f9b60
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a2815992be587d513de84ab570f889c7db0ecea00b82943a2968ec95d199d94c2313a396ff1d9277e372fc30cf5b21561da0598f4d3f15733844bf68e7b0a88
|
|
7
|
+
data.tar.gz: d2622c8fc1561bfb30325cc2ed027d1f95f5155dd100a6343829b85633d7cbd7fcfff249efbb9e3275a2128de01fec112bb885347c0dd7925cd5145c5a483117
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### v0.14.4 / 2023-01-23
|
|
4
|
+
|
|
5
|
+
* (No significant changes)
|
|
6
|
+
|
|
7
|
+
### v0.14.3 / 2022-12-29
|
|
8
|
+
|
|
9
|
+
* FIXED: Exit with a code -1 if a non-integer exit code is thrown
|
|
10
|
+
* FIXED: The sh command in the Exec utility returns -1 if the exit code cannot be determined
|
|
11
|
+
* FIXED: Update Bundler integration to support Bundler 2.4 and Ruby 3.2
|
|
12
|
+
* FIXED: Fix for installing bundler on older Rubies
|
|
13
|
+
* FIXED: Fixed XDG defaults on JRuby 9.4
|
|
14
|
+
|
|
3
15
|
### v0.14.2 / 2022-10-09
|
|
4
16
|
|
|
5
17
|
* ADDED: The tool directive supports the delegate_relative argument, as a preferred alternative over alias_tool.
|
data/core-docs/toys/core.rb
CHANGED
data/lib/toys/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: toys
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.14.
|
|
4
|
+
version: 0.14.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-01-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: toys-core
|
|
@@ -16,14 +16,14 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - '='
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.14.
|
|
19
|
+
version: 0.14.4
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: 0.14.
|
|
26
|
+
version: 0.14.4
|
|
27
27
|
description: Toys is a configurable command line tool. Write commands in Ruby using
|
|
28
28
|
a simple DSL, and Toys will provide the command line executable and take care of
|
|
29
29
|
all the details such as argument parsing, online help, and error reporting. Toys
|
|
@@ -120,10 +120,10 @@ homepage: https://github.com/dazuma/toys
|
|
|
120
120
|
licenses:
|
|
121
121
|
- MIT
|
|
122
122
|
metadata:
|
|
123
|
-
changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.14.
|
|
123
|
+
changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.14.4/file.CHANGELOG.html
|
|
124
124
|
source_code_uri: https://github.com/dazuma/toys/tree/main/toys
|
|
125
125
|
bug_tracker_uri: https://github.com/dazuma/toys/issues
|
|
126
|
-
documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.14.
|
|
126
|
+
documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.14.4
|
|
127
127
|
post_install_message:
|
|
128
128
|
rdoc_options: []
|
|
129
129
|
require_paths:
|