yaml_extend 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/yaml_extend/version.rb +1 -1
- data/lib/yaml_extend.rb +1 -3
- 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: c5ab39dd4d1b790d1d73de077e99b30963040951ef98b583085ce58331083144
|
4
|
+
data.tar.gz: a67afd6dce0a398d466efda67c773d00bdaffeaa5eddac74ab07469e425e9177
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 604d8a4232dfe3eed9d74d8077ee16c9cfe7341c730fc06667a0bfdd0ab24d3a9bdf67e0ee5b87f4230d1b14c010d9b187b3dd5d34d8db3b3f734fca544dad46
|
7
|
+
data.tar.gz: 12cee38d68fabaee77b4cfd039d17bafce15b3545fd4937bf25135a8c5a812c05072162b8592c0fd742751a572be6de331e94ccd43786fe0268d8710d09c8b3b
|
data/lib/yaml_extend/version.rb
CHANGED
data/lib/yaml_extend.rb
CHANGED
@@ -15,9 +15,7 @@ module YAML
|
|
15
15
|
# ability to inherit from other YAML file(s)
|
16
16
|
#
|
17
17
|
# @param yaml_path [String] the path to the yaml file to be loaded
|
18
|
-
# @param inheritance_key [String|Array]
|
19
|
-
# The key used in the yaml file to extend from another YAML file.
|
20
|
-
# Use an Array if you want to use a tree structure key like "options.extends" => ['options','extends']
|
18
|
+
# @param inheritance_key [String|Array] The key used in the yaml file to extend from another YAML file. Use an Array if you want to use a tree structure key like "options.extends" => ['options','extends']
|
21
19
|
# @param extend_existing_arrays [Boolean] extend existing arrays instead of replacing them
|
22
20
|
# @param config [Hash] a hash to be merged into the result, usually only recursivly called by the method itself
|
23
21
|
#
|