App::CLI::Plugin::Config::YAML::Syck - for App::CLI::Extension config plugin module


App-CLI-Plugin-Config-YAML-Syck documentation  | view source Contained in the App-CLI-Plugin-Config-YAML-Syck distribution.

Index


NAME

Top

App::CLI::Plugin::Config::YAML::Syck - for App::CLI::Extension config plugin module

VERSION

Top

1.2

SYNOPSIS

Top

  # MyApp.pm
  package MyApp;

  use strict;
  use base qw(App::CLI::Extension);

  # extension method
  __PACKAGE__->load_plugins(qw(Config::YAML::Syck));

  # extension method
  __PACKAGE__->config( config_file => "/path/to/config.yaml");

  1;

  


  # /path/to/config.yaml
  # ---
  # name: kurt
  # age:  27

  # MyApp/Hello.pm
  package MyApp::Hello;

  use strict;
  use base qw(App::CLI::Command);

  sub run {

      my($self, @argv) = @_;
      print "Hello! my name is " . $self->config->{name} . "\n";
      print "age is " . "$self->config->{age}\n";
  }

  # myapp
  #!/usr/bin/perl

  use strict;
  use MyApp;

  MyApp->dispatch;

  # execute
  [kurt@localhost ~] ./myapp hello
  Hello! my name is kurt
  age is 27

DESCRIPTION

Top

App::CLI::Extension YAML::Syck Configuration plugin module

The priority of the config file (name of the execute file in the case of *myapp*)

1. /etc/myapp.yml

2. /usr/local/etc/myapp.yaml

3. $HOME/.myapp.yml

4. $APPCLI_CONFIGFILE(environ variable. if exists)

5. command line option

   myapp hello --configfile=/path/to/config.yml

6. config method setting

   __PACKAGE__->config(config_file => "/path/to/config.yml");

EXTENDED METHOD

Top

setup

SEE ALSO

Top

App::CLI::Extension YAML::Syck

AUTHOR

Top

Akira Horimoto

COPYRIGHT AND LICENSE

Top


App-CLI-Plugin-Config-YAML-Syck documentation  | view source Contained in the App-CLI-Plugin-Config-YAML-Syck distribution.