gloo 6.5.0 → 6.5.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/lib/VERSION +1 -1
- data/lib/VERSION_NOTES +4 -0
- data/lib/gloo/verbs/load.rb +9 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 19bd707a24eb9bbd3e2759cdb2ae244d2dafc28f40c0f4046c856152e343261c
|
|
4
|
+
data.tar.gz: fd3fd34b664abb32a464d3745de0ede24e136f2b2a7f375809170312bbec51a1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f21efa7866b7eeb455fb4e7a8c64465bcd41a498d6129f04220c69eb814178f92775aeb96ef0e2a972f6df481d4603acf6e3de7c728e6508262347012cfb20cc
|
|
7
|
+
data.tar.gz: 956306465a135039e185104bb81cf504af379265814b5a02ba4637c3a6412463ce655aa48bae66e1f3315fd8c90925899c2ca0afda9fbf6a795c66b35e339967
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
6.5.
|
|
1
|
+
6.5.1
|
data/lib/VERSION_NOTES
CHANGED
data/lib/gloo/verbs/load.rb
CHANGED
|
@@ -131,7 +131,15 @@ module Gloo
|
|
|
131
131
|
'declare it in each file and add different children, and ' \
|
|
132
132
|
'they merge in the heap. If two loaded files declare the ' \
|
|
133
133
|
'same object with different values, the first one loaded ' \
|
|
134
|
-
|
|
134
|
+
"wins and a warning is logged.\n\n" \
|
|
135
|
+
'A contiguous run of whole-line comments declared ' \
|
|
136
|
+
'immediately above an object (same indent, no blank line ' \
|
|
137
|
+
"in between) becomes that object's doc, captured as the " \
|
|
138
|
+
'file loads. Read it back with tell {obj} to doc or ' \
|
|
139
|
+
'check {obj} for doc, or see it inline in the object tree ' \
|
|
140
|
+
'with list when the list_docs setting is on. When a name ' \
|
|
141
|
+
'is declared in more than one loaded file, the first ' \
|
|
142
|
+
'non-empty doc wins, same as the first value.',
|
|
135
143
|
:examples => <<~EXAMPLES.strip
|
|
136
144
|
> load my/project/file
|
|
137
145
|
> load my/app/*
|