toys 0.11.0 → 0.11.1

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: 93df1335be3b4e82bc30602ed8e78d8a04e99e1df6eecadb1a13430107c761c0
4
- data.tar.gz: 448add98c695e182efcd00dd3995f4c62a8533f47dc8d80a915399a17ec584d5
3
+ metadata.gz: b82bf46b4d621e2d8c568c3c87e7709a96232805f761bedc9e9fb62b5e46d1ac
4
+ data.tar.gz: 86e8687ffde2eecabf121a8b6aa09924a8e83e58da1db70558d2b62a3f394014
5
5
  SHA512:
6
- metadata.gz: '014558969bf84b3f37a8e1948eaeaa7a4acfc0a07b4cfda1a0ec50f1fc11691219fa659a81ed73a0470e1f04ba85311810a3a151d2f5422042c983e969560584'
7
- data.tar.gz: 5fdb203c6b967e554bc16aeadd4d5e8dcccc931f11d04bca0e22d9b635727f7891b4a80363f4ac60b4e0d80ebdc39188595b3dce6e6a3dce72d9e27c83c14e86
6
+ metadata.gz: 76e7d28e8e236b3239ce2ecf7328a6e684a3b085f317ed151c8a3e4bead6af6c8af9e4f125a2116d83917459e3bf163fbb6cc3264a7019caf6e42f3bedd21f85
7
+ data.tar.gz: f2c4a2aef746be262ab489ad12ff3e8321067f939eaa023eac77f0bf1b63484af4b4e3923e241cc4fa00f61a94bbdf40bf424d34460d595672e5c93e3d40a05f
@@ -1,5 +1,9 @@
1
1
  # Release History
2
2
 
3
+ ### 0.11.1 / 2020-08-24
4
+
5
+ * FIXED: The `.lib` directory actually works as advertised.
6
+
3
7
  ### 0.11.0 / 2020-08-21
4
8
 
5
9
  * ADDED: The toys search path can be truncated using the `truncate_load_path!` directive.
@@ -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
@@ -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.0"
8
+ VERSION = "0.11.1"
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.0
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-21 00:00:00.000000000 Z
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.0
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.0
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.0/file.CHANGELOG.html
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.0
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: