toys 0.11.4 → 0.11.5
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 +10 -3
- data/builtins/system.rb +1 -1
- data/lib/toys/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 063c28a7b9b7d3bc5f7ada761beb8623ff144b92847f2a9424889ca953d27cee
|
|
4
|
+
data.tar.gz: a1bcdb384d7592a0a43760aab7cd6da0e4afa4b6a1fd1ad59bb74ed6a6eeef73
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50596ee8741422c0e186c7c2b63b52410a0afa1de04dfbea43e06acbf52c8b56f46c54c86471a80bae451c004d238ea94b58d666e7c39742de80bf9c95f95106
|
|
7
|
+
data.tar.gz: 1230cf4acb2414f378be58279a3017cd897a101a7c715e4db88394a8490fdb46dee7d0d9a617196698c034dddf3c6ac88b3855ba19262785dd4989dcf253d409
|
data/CHANGELOG.md
CHANGED
|
@@ -1,17 +1,24 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### v0.11.5 / 2021-03-28
|
|
4
|
+
|
|
5
|
+
* BREAKING CHANGE: The exit_on_nonzero_status option to exec now exits on signals and failures to spawn, in addition to error codes.
|
|
6
|
+
* ADDED: Support retries in the bundler integration.
|
|
7
|
+
* FIXED: Fix a bundler 2.2 integration issue that fails install in certain cases when an update is needed.
|
|
8
|
+
* FIXED: Eliminate Rubygems warning on toys system update.
|
|
9
|
+
|
|
3
10
|
### v0.11.4 / 2020-10-11
|
|
4
11
|
|
|
5
12
|
* FIXED: Doesn't modify bundler lockfiles when adding Toys to a bundle
|
|
6
|
-
* FIXED: Rdoc template now works on Ruby 3
|
|
13
|
+
* FIXED: Rdoc template now works on Ruby 3
|
|
7
14
|
|
|
8
15
|
### v0.11.3 / 2020-09-13
|
|
9
16
|
|
|
10
|
-
* FIXED: The Exec mixin recognizes the argv0 option, and logs it appropriately
|
|
17
|
+
* FIXED: The Exec mixin recognizes the argv0 option, and logs it appropriately
|
|
11
18
|
|
|
12
19
|
### v0.11.2 / 2020-09-06
|
|
13
20
|
|
|
14
|
-
* FIXED: Don't get confused when running toys from within a toys directory
|
|
21
|
+
* FIXED: Don't get confused when running toys from within a toys directory
|
|
15
22
|
* FIXED: Fix a JRuby-specific race condition when capturing exec streams
|
|
16
23
|
|
|
17
24
|
### v0.11.1 / 2020-08-24
|
data/builtins/system.rb
CHANGED
|
@@ -28,7 +28,7 @@ tool "update" do
|
|
|
28
28
|
configure_exec(exit_on_nonzero_status: true)
|
|
29
29
|
version_info = spinner(leading_text: "Checking rubygems for the latest release... ",
|
|
30
30
|
final_text: "Done.\n") do
|
|
31
|
-
capture(["gem", "
|
|
31
|
+
capture(["gem", "list", "-q", "-r", "-e", "toys"])
|
|
32
32
|
end
|
|
33
33
|
if version_info =~ /toys\s\((.+)\)/
|
|
34
34
|
latest_version = ::Gem::Version.new(::Regexp.last_match(1))
|
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.11.
|
|
4
|
+
version: 0.11.5
|
|
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: 2021-03-28 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.11.
|
|
19
|
+
version: 0.11.5
|
|
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.11.
|
|
26
|
+
version: 0.11.5
|
|
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
|
|
@@ -63,10 +63,10 @@ homepage: https://github.com/dazuma/toys
|
|
|
63
63
|
licenses:
|
|
64
64
|
- MIT
|
|
65
65
|
metadata:
|
|
66
|
-
changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.11.
|
|
67
|
-
source_code_uri: https://github.com/dazuma/toys
|
|
66
|
+
changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.11.5/file.CHANGELOG.html
|
|
67
|
+
source_code_uri: https://github.com/dazuma/toys/tree/main/toys
|
|
68
68
|
bug_tracker_uri: https://github.com/dazuma/toys/issues
|
|
69
|
-
documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.11.
|
|
69
|
+
documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.11.5
|
|
70
70
|
post_install_message:
|
|
71
71
|
rdoc_options: []
|
|
72
72
|
require_paths:
|