You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A file can inherit from as many as you want. Trees can be nested as deep as you want.
@@ -71,7 +80,7 @@ data:
71
80
When you then call #ext_load_file
72
81
73
82
```ruby
74
-
YAML.ext_load_file 'start.yml'
83
+
config = YAML.ext_load_file 'start.yml'
75
84
```
76
85
77
86
the returned YAML value results in
@@ -113,14 +122,13 @@ foo: 'bar'
113
122
##### 1. Specify by parameter
114
123
You can specify the key by parameter, this is the way to go if you want to use the different key only once or you use the #ext_load_file method only once in your application.
0 commit comments