Ansible-Util

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Kavorka" : "0",
            "Modern::Perl" : "0",
            "Moose" : "0",
            "Moose::Role" : "0",
            "Util::Medley::Roles::Attributes::Cache" : "0",
            "Util::Medley::Roles::Attributes::File" : "0",
            "Util::Medley::Roles::Attributes::Logger" : "0",
            "Util::Medley::Roles::Attributes::Spawn" : "0",
            "YAML" : "0",
            "constant" : "0",
            "namespace::autoclean" : "0"
         }
      },
      "test" : {
         "requires" : {
            "Test::More" : "0",
            "Util::Medley::File" : "0",
            "lib" : "0",
            "vars" : "0"
         }
      }

META.yml  view on Meta::CPAN

  Kavorka: '0'
  Modern::Perl: '0'
  Moose: '0'
  Moose::Role: '0'
  Util::Medley::Roles::Attributes::Cache: '0'
  Util::Medley::Roles::Attributes::File: '0'
  Util::Medley::Roles::Attributes::Logger: '0'
  Util::Medley::Roles::Attributes::Spawn: '0'
  YAML: '0'
  constant: '0'
  namespace::autoclean: '0'
resources:
  repository: https://github.com/gravattj/Ansible-Util-perl.git
version: '0.001'
x_generated_by_perl: v5.16.3
x_serialization_backend: 'YAML::Tiny version 1.73'

Makefile.PL  view on Meta::CPAN

    "Kavorka" => 0,
    "Modern::Perl" => 0,
    "Moose" => 0,
    "Moose::Role" => 0,
    "Util::Medley::Roles::Attributes::Cache" => 0,
    "Util::Medley::Roles::Attributes::File" => 0,
    "Util::Medley::Roles::Attributes::Logger" => 0,
    "Util::Medley::Roles::Attributes::Spawn" => 0,
    "YAML" => 0,
    "constant" => 0,
    "namespace::autoclean" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0,
    "Util::Medley::File" => 0,
    "lib" => 0,
    "vars" => 0
  },
  "VERSION" => "0.001",
  "test" => {
    "TESTS" => "t/*.t"

lib/Ansible/Util/Run.pm  view on Meta::CPAN

package Ansible::Util::Run;
$Ansible::Util::Run::VERSION = '0.001';
use Modern::Perl;
use Moose;
use namespace::autoclean;
use Kavorka 'method';
use Data::Printer alias => 'pdump';

=head1 NAME

Ansible::Util::Run

=head1 VERSION

version 0.001

lib/Ansible/Util/Vars.pm  view on Meta::CPAN

To indicate which vars to read, you use the variable dot notation similar to 
what is described in the Ansible documentation.  Further information about the 
Perl implementation can be found in L<Hash::DotPath>.

An optional cache layer is used to speed up multiple invocations.   
 
=cut

use Modern::Perl;
use Moose;
use namespace::autoclean;
use Kavorka 'method';
use Data::Printer alias => 'pdump';
use File::Temp 'tempfile', 'tempdir';
use Hash::DotPath;
use JSON;
use YAML ();
use Ansible::Util::Run;

with 'Ansible::Util::Roles::Constants';

t/Local/Ansible/Test1.pm  view on Meta::CPAN

package Local::Ansible::Test1;

use Modern::Perl;
use Moose;
use namespace::autoclean;
use Data::Printer alias => 'pdump';
use Kavorka 'method';
use Util::Medley::File;

with 'Util::Medley::Roles::Attributes::File';

################################

has vaultPasswordFiles => (
	is      => 'rw',

t/Local/Ansible/Test2.pm  view on Meta::CPAN

package Local::Ansible::Test2;

use Modern::Perl;
use Moose;
use namespace::autoclean;
use Data::Printer alias => 'pdump';
use Kavorka 'method';
use Util::Medley::File;

with 'Util::Medley::Roles::Attributes::File';

################################

has vaultPasswordFiles => (
	is      => 'rw',

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.074 second using v1.00-cache-2.02-grep-82fe00e-cpan-c98054f2a92 )