toys 0.11.3 → 0.11.4

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: b7352461981cbfeeba4271c71e58d864f210aab1e42ff572f94d15b56be16cbc
4
- data.tar.gz: 22c10a76a8b53a8482b6b9b46650d005fb2c94a8c8f3d8be59d7e2f9720a243e
3
+ metadata.gz: 157b95b198bf302d5002c35f7ed25729fe2e0fadab3fe78e059ee49b767809ec
4
+ data.tar.gz: 6e95e541744892188c66d7e516a890be73036f2f0efc28b3778a0828d4e3feff
5
5
  SHA512:
6
- metadata.gz: 4f2831bcebdf9606dba1d59dec4a8e1d3b997c03abaf54149c5e7f792e5aabca6e84d2f18af5aab2c88e6192645ffd3f2c954ab5913a6237368cd85c386e6b4b
7
- data.tar.gz: b4f06825d9838ba0ddbafb607378b5a60996398f4a6efdce023169e07f7fb6f639e6d43f69edd3874b5e8af5364761e96c87048a0332226bb023dab04c2b35e6
6
+ metadata.gz: 3f79df4fd3b290d297aa50ae704f1c6bde2ca438e29dc657e4a43d576723d130a0665985d22b5ab1e147cee2750ea1dfc53045fbe44b4ef5cfd52e8e7f43c73b
7
+ data.tar.gz: c6bf12e806eb665d774c6ef96dbc0319864a1e9c5cf7236b9e49d30a3a558c35f41d634b0c9689adbea6d03b28d4e19c207a77c681e0fadc748a8b8b69bcc39d
@@ -1,5 +1,10 @@
1
1
  # Release History
2
2
 
3
+ ### v0.11.4 / 2020-10-11
4
+
5
+ * FIXED: Doesn't modify bundler lockfiles when adding Toys to a bundle
6
+ * FIXED: Rdoc template now works on Ruby 3
7
+
3
8
  ### v0.11.3 / 2020-09-13
4
9
 
5
10
  * FIXED: The Exec mixin recognizes the argv0 option, and logs it appropriately
@@ -12,7 +12,7 @@ module Toys
12
12
  # Default version requirements for the rdoc gem.
13
13
  # @return [Array<String>]
14
14
  #
15
- DEFAULT_GEM_VERSION_REQUIREMENTS = ["~> 6.1.0"].freeze
15
+ DEFAULT_GEM_VERSION_REQUIREMENTS = [">= 6.1.0"].freeze
16
16
 
17
17
  ##
18
18
  # Default tool name
@@ -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.3"
8
+ VERSION = "0.11.4"
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.3
4
+ version: 0.11.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: 2020-09-13 00:00:00.000000000 Z
11
+ date: 2020-10-11 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.3
19
+ version: 0.11.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.11.3
26
+ version: 0.11.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
@@ -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.3/file.CHANGELOG.html
66
+ changelog_uri: https://dazuma.github.io/toys/gems/toys/v0.11.4/file.CHANGELOG.html
67
67
  source_code_uri: https://github.com/dazuma/toys
68
68
  bug_tracker_uri: https://github.com/dazuma/toys/issues
69
- documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.11.3
69
+ documentation_uri: https://dazuma.github.io/toys/gems/toys/v0.11.4
70
70
  post_install_message:
71
71
  rdoc_options: []
72
72
  require_paths:
@@ -82,7 +82,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
82
82
  - !ruby/object:Gem::Version
83
83
  version: '0'
84
84
  requirements: []
85
- rubygems_version: 3.1.2
85
+ rubygems_version: 3.1.4
86
86
  signing_key:
87
87
  specification_version: 4
88
88
  summary: A configurable command line tool