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
{{ message }}
This repository has been archived by the owner on May 29, 2024. It is now read-only.
If I specify a value in fudge_settings.yml in a directory that same value will carry over to the next directory unless overridden by a fudge_settings.yml file with that same key.
e.g.:
each_directory ['meta_one', 'meta_too'] do
task :torture
end
meta_one/fudge_settings.yml:
torture:
threshold: 8
average: 4
meta_two/fudge_settings.yml:
torture:
threshold: 8
In this case, the torture task will still apply the average of 4 in meta_two.
The text was updated successfully, but these errors were encountered:
In this case, I would expect any values in meta/one/fudge_settings.yml to carry through to meta/one/point_1 and meta/one/point_2 (unless explicitly overridden in the sub-directory), but not to meta/too.
The case for carrying settings over into sub-directories might be clearer if we rewrite the above as:
Are we saying that it's not possible to override the settings in the Fudgefile declaration? I see carrying through to subdirs as desirable. We might want a flag to say 'recursive: false' or something
If I specify a value in
fudge_settings.yml
in a directory that same value will carry over to the next directory unless overridden by afudge_settings.yml
file with that same key.e.g.:
meta_one/fudge_settings.yml:
meta_two/fudge_settings.yml:
In this case, the
torture
task will still apply theaverage
of 4 in meta_two.The text was updated successfully, but these errors were encountered: