NAME
Mojolicious::Plugin::YamlConfig - YAML Configuration Plugin
SYNOPSIS
# myapp.yaml
--
foo:
"bar"
music_dir:
"<%= app->home->rel_dir('music') %>"
# Mojolicious
$self
->plugin(
'yaml_config'
);
# Mojolicious::Lite
plugin
'yaml_config'
;
# Everything can be customized with options
plugin
yaml_config
=> {
file
=>
'/etc/myapp.conf'
,
class
=>
'YAML::XS'
};
DESCRIPTION
Look at Mojolicious::Plugin::JSONConfig and replace "JSONConfig" with "yaml_config" and you should be fine. :)
LIMITATIONS
YAML::Tiny is the default parser. It doesn't even try to implement the full YAML spec. Currently you can use YAML::PP, YAML::XS, YAML::Old and YAML via the class
option to parse the data with a more advanced YAML parser.
AUTHOR
Danijel Tasov <cpan@rbfh.de>
SEE ALSO
Mojolicious, Mojolicious::Plugin::JSONConfig, Mojolicious::Guides