toys 0.11.0 → 0.11.1
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 +4 -0
- data/lib/toys/standard_cli.rb +7 -0
- 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: b82bf46b4d621e2d8c568c3c87e7709a96232805f761bedc9e9fb62b5e46d1ac
|
|
4
|
+
data.tar.gz: 86e8687ffde2eecabf121a8b6aa09924a8e83e58da1db70558d2b62a3f394014
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 76e7d28e8e236b3239ce2ecf7328a6e684a3b085f317ed151c8a3e4bead6af6c8af9e4f125a2116d83917459e3bf163fbb6cc3264a7019caf6e42f3bedd21f85
|
|
7
|
+
data.tar.gz: f2c4a2aef746be262ab489ad12ff3e8321067f939eaa023eac77f0bf1b63484af4b4e3923e241cc4fa00f61a94bbdf40bf424d34460d595672e5c93e3d40a05f
|
data/CHANGELOG.md
CHANGED
data/lib/toys/standard_cli.rb
CHANGED
|
@@ -42,6 +42,12 @@ module Toys
|
|
|
42
42
|
#
|
|
43
43
|
DATA_DIR_NAME = ".data"
|
|
44
44
|
|
|
45
|
+
##
|
|
46
|
+
# Standard lib directory name in a toys configuration.
|
|
47
|
+
# @return [String]
|
|
48
|
+
#
|
|
49
|
+
LIB_DIR_NAME = ".lib"
|
|
50
|
+
|
|
45
51
|
##
|
|
46
52
|
# Name of the standard toys executable.
|
|
47
53
|
# @return [String]
|
|
@@ -99,6 +105,7 @@ module Toys
|
|
|
99
105
|
preload_file_name: PRELOAD_FILE_NAME,
|
|
100
106
|
preload_dir_name: PRELOAD_DIR_NAME,
|
|
101
107
|
data_dir_name: DATA_DIR_NAME,
|
|
108
|
+
lib_dir_name: LIB_DIR_NAME,
|
|
102
109
|
extra_delimiters: EXTRA_DELIMITERS,
|
|
103
110
|
middleware_stack: default_middleware_stack,
|
|
104
111
|
template_lookup: default_template_lookup
|
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.1
|
|
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-08-
|
|
11
|
+
date: 2020-08-24 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.1
|
|
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.1
|
|
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.1/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.1
|
|
70
70
|
post_install_message:
|
|
71
71
|
rdoc_options: []
|
|
72
72
|
require_paths:
|