Rex

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "IO::Socket" : "0",
            "IPC::Open3" : "0",
            "JSON::MaybeXS" : "0",
            "LWP::UserAgent" : "0",
            "List::Util" : "1.45",
            "MIME::Base64" : "0",
            "Module::Load::Conditional" : "0",
            "Net::OpenSSH::ShellQuoter" : "0",
            "POSIX" : "0",
            "Scalar::Util" : "0",
            "Sort::Naturally" : "0",
            "Storable" : "0",
            "Symbol" : "0",
            "Term::ANSIColor" : "0",
            "Term::ReadKey" : "0",
            "Test::Builder::Module" : "0",
            "Text::Glob" : "0",
            "Text::Wrap" : ">= 0, != 2023.0509",
            "Time::HiRes" : "0",
            "UNIVERSAL" : "0",
            "URI" : "0",

META.yml  view on Meta::CPAN

  IO::Socket: '0'
  IPC::Open3: '0'
  JSON::MaybeXS: '0'
  LWP::UserAgent: '0'
  List::Util: '1.45'
  MIME::Base64: '0'
  Module::Load::Conditional: '0'
  Net::OpenSSH::ShellQuoter: '0'
  POSIX: '0'
  Scalar::Util: '0'
  Sort::Naturally: '0'
  Storable: '0'
  Symbol: '0'
  Term::ANSIColor: '0'
  Term::ReadKey: '0'
  Test::Builder::Module: '0'
  Text::Glob: '0'
  Text::Wrap: '>= 0, != 2023.0509'
  Time::HiRes: '0'
  UNIVERSAL: '0'
  URI: '0'

Makefile.PL  view on Meta::CPAN

    "IO::Socket" => 0,
    "IPC::Open3" => 0,
    "JSON::MaybeXS" => 0,
    "LWP::UserAgent" => 0,
    "List::Util" => "1.45",
    "MIME::Base64" => 0,
    "Module::Load::Conditional" => 0,
    "Net::OpenSSH::ShellQuoter" => 0,
    "POSIX" => 0,
    "Scalar::Util" => 0,
    "Sort::Naturally" => 0,
    "Storable" => 0,
    "Symbol" => 0,
    "Term::ANSIColor" => 0,
    "Term::ReadKey" => 0,
    "Test::Builder::Module" => 0,
    "Text::Glob" => 0,
    "Text::Wrap" => ">= 0, != 2023.0509",
    "Time::HiRes" => 0,
    "UNIVERSAL" => 0,
    "URI" => 0,

Makefile.PL  view on Meta::CPAN

  "IO::Socket" => 0,
  "IPC::Open3" => 0,
  "JSON::MaybeXS" => 0,
  "LWP::UserAgent" => 0,
  "List::Util" => "1.45",
  "MIME::Base64" => 0,
  "Module::Load::Conditional" => 0,
  "Net::OpenSSH::ShellQuoter" => 0,
  "POSIX" => 0,
  "Scalar::Util" => 0,
  "Sort::Naturally" => 0,
  "Storable" => 0,
  "String::Escape" => 0,
  "Sub::Override" => 0,
  "Symbol" => 0,
  "Term::ANSIColor" => 0,
  "Term::ReadKey" => 0,
  "Test::Builder::Module" => 0,
  "Test::Deep" => 0,
  "Test::Exception" => 0,
  "Test::More" => 0,

lib/Rex/CLI.pm  view on Meta::CPAN


use English qw(-no_match_vars);
use FindBin;
use File::Basename qw(basename dirname);
use Time::HiRes    qw(gettimeofday tv_interval);
use Cwd            qw(getcwd);
use List::Util     qw(max);
use Text::Wrap;
use Term::ANSIColor;
use Term::ReadKey;
use Sort::Naturally;

use if $OSNAME eq 'MSWin32', 'Win32::Console::ANSI';

use Rex;
use Rex::Args;
use Rex::Config;
use Rex::Group;
use Rex::Batch;
use Rex::TaskList;
use Rex::Logger;

lib/Rex/Group/Entry/Server.pm  view on Meta::CPAN

use v5.14.4;
use warnings;

our $VERSION = '1.16.1'; # VERSION

use Rex::Logger;
use Rex::Helper::System;
use Rex::Config;
use Rex::Interface::Exec;
use Data::Dumper;
use Sort::Naturally;
use Symbol;

use List::Util 1.45 qw(uniq);

use overload
  'eq'  => sub { shift->is_eq(@_); },
  'ne'  => sub { shift->is_ne(@_); },
  '""'  => sub { shift->to_s(@_); },
  'cmp' => sub { shift->compare(@_); };



( run in 2.526 seconds using v1.01-cache-2.11-cpan-56fb94df46f )