toys 0.11.4 → 0.11.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 157b95b198bf302d5002c35f7ed25729fe2e0fadab3fe78e059ee49b767809ec
4
- data.tar.gz: 6e95e541744892188c66d7e516a890be73036f2f0efc28b3778a0828d4e3feff
3
+ metadata.gz: 063c28a7b9b7d3bc5f7ada761beb8623ff144b92847f2a9424889ca953d27cee
4
+ data.tar.gz: a1bcdb384d7592a0a43760aab7cd6da0e4afa4b6a1fd1ad59bb74ed6a6eeef73
5
5
  SHA512:
6
- metadata.gz: 3f79df4fd3b290d297aa50ae704f1c6bde2ca438e29dc657e4a43d576723d130a0665985d22b5ab1e147cee2750ea1dfc53045fbe44b4ef5cfd52e8e7f43c73b
7
- data.tar.gz: c6bf12e806eb665d774c6ef96dbc0319864a1e9c5cf7236b9e49d30a3a558c35f41d634b0c9689adbea6d03b28d4e19c207a77c681e0fadc748a8b8b69bcc39d
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", "query", "-q", "-r", "-e", "toys"])
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
@@ -5,5 +5,5 @@ module Toys
5
5
  # Current version of the Toys command line executable.
6
6
  # @return [String]
7
7
  #
8
- VERSION = "0.11.4"
8
+ VERSION = "0.11.5"
9
9
  end
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
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: 2020-10-11 00:00:00.000000000 Z
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.4
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.4
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.4/file.CHANGELOG.html
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.4
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: