toys 0.11.3 → 0.11.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 +5 -0
- data/lib/toys/templates/rdoc.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: 157b95b198bf302d5002c35f7ed25729fe2e0fadab3fe78e059ee49b767809ec
|
|
4
|
+
data.tar.gz: 6e95e541744892188c66d7e516a890be73036f2f0efc28b3778a0828d4e3feff
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3f79df4fd3b290d297aa50ae704f1c6bde2ca438e29dc657e4a43d576723d130a0665985d22b5ab1e147cee2750ea1dfc53045fbe44b4ef5cfd52e8e7f43c73b
|
|
7
|
+
data.tar.gz: c6bf12e806eb665d774c6ef96dbc0319864a1e9c5cf7236b9e49d30a3a558c35f41d634b0c9689adbea6d03b28d4e19c207a77c681e0fadc748a8b8b69bcc39d
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
data/lib/toys/templates/rdoc.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.11.
|
|
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-
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
85
|
+
rubygems_version: 3.1.4
|
|
86
86
|
signing_key:
|
|
87
87
|
specification_version: 4
|
|
88
88
|
summary: A configurable command line tool
|