App-EvalServerAdvanced-REPL

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::More" : "0",
            "Test::Perl::Critic" : "0",
            "Test::Pod" : "1.41",
            "blib" : "1.01",
            "perl" : "5.006"
         }
      },
      "runtime" : {
         "requires" : {
            "App::EvalServerAdvanced::Protocol" : "0",
            "Data::Dumper" : "0",
            "Encode" : "0",
            "Exporter" : "0",
            "IO::Async::Loop" : "0",
            "IO::Async::Stream" : "0",
            "Term::ReadLine" : "0",
            "open" : "0",
            "strict" : "0",
            "utf8" : "0",
            "warnings" : "0"
         }

META.yml  view on Meta::CPAN

    - inc
    - share
    - t
    - xt
provides:
  App::EvalServerAdvanced::REPL:
    file: lib/App/EvalServerAdvanced/REPL.pm
    version: '0.004'
requires:
  App::EvalServerAdvanced::Protocol: '0'
  Data::Dumper: '0'
  Encode: '0'
  Exporter: '0'
  IO::Async::Loop: '0'
  IO::Async::Stream: '0'
  Term::ReadLine: '0'
  open: '0'
  strict: '0'
  utf8: '0'
  warnings: '0'
resources:

Makefile.PL  view on Meta::CPAN

    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "App-EvalServerAdvanced-REPL",
  "EXE_FILES" => [
    "script/esa-repl"
  ],
  "LICENSE" => "perl",
  "NAME" => "App::EvalServerAdvanced::REPL",
  "PREREQ_PM" => {
    "App::EvalServerAdvanced::Protocol" => 0,
    "Data::Dumper" => 0,
    "Encode" => 0,
    "Exporter" => 0,
    "IO::Async::Loop" => 0,
    "IO::Async::Stream" => 0,
    "Term::ReadLine" => 0,
    "open" => 0,
    "strict" => 0,
    "utf8" => 0,
    "warnings" => 0
  },

Makefile.PL  view on Meta::CPAN

  },
  "VERSION" => "0.004",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


my %FallbackPrereqs = (
  "App::EvalServerAdvanced::Protocol" => 0,
  "Data::Dumper" => 0,
  "Encode" => 0,
  "Exporter" => 0,
  "ExtUtils::MakeMaker" => 0,
  "File::Spec" => 0,
  "IO::Async::Loop" => 0,
  "IO::Async::Stream" => 0,
  "Term::ReadLine" => 0,
  "Test::More" => 0,
  "open" => 0,
  "strict" => 0,

lib/App/EvalServerAdvanced/REPL.pm  view on Meta::CPAN

package App::EvalServerAdvanced::REPL;

use strict;
use warnings;
use Data::Dumper;
use Term::ReadLine;
use IO::Async::Loop;
use IO::Async::Stream;
use Encode;
use utf8;
use open qw/:std :utf8/;

use App::EvalServerAdvanced::Protocol;
use Exporter 'import';
our @EXPORT = qw/start_repl/;

t/00-report-prereqs.dd  view on Meta::CPAN

                                      'Test::More' => '0',
                                      'Test::Perl::Critic' => '0',
                                      'Test::Pod' => '1.41',
                                      'blib' => '1.01',
                                      'perl' => '5.006'
                                    }
                    },
       'runtime' => {
                      'requires' => {
                                      'App::EvalServerAdvanced::Protocol' => '0',
                                      'Data::Dumper' => '0',
                                      'Encode' => '0',
                                      'Exporter' => '0',
                                      'IO::Async::Loop' => '0',
                                      'IO::Async::Stream' => '0',
                                      'Term::ReadLine' => '0',
                                      'open' => '0',
                                      'strict' => '0',
                                      'utf8' => '0',
                                      'warnings' => '0'
                                    }



( run in 0.315 second using v1.01-cache-2.11-cpan-4d50c553e7e )