Farabi

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

    - 20% smaller minified Perlito 5
    - Improved documentation
    - Perl::Critic violations are shown under the line where they occurred and when clicked
      they open the detailed dialog for that violation.
    - Switched to development CodeMirror v3 branch
    - Updated sample script POD by Kevin dawson (bowtie++)
    - Added Perl 5.10.1 requirement at the beginning because Mojolicious already defines that. We do not want to fail later.
    - Added 'Learn' tab
    - Updated humane.min.js to 3.0.5
    - A better about dialog that shows more technologies used version information
    - Added dummy Perlito IO API implementation. use Modern::Perl; does not croak anymore but does nothing at the same time :)
    - F5 is now "Run in browser". Please note that it is only active when the editor is focused.
    - Fixed long-line-in-editor layout bug
    - xt/eol.t (release testing) now checks all files for UNIX newlines.

0.07  2012.9.10
    - Added POD tab that automatically shows editor POD as HTML in realtime
    - Added Help and about dialog
    - Various HTML fixes that fix the long editor bug
    - Improved documentation

eg/run_1.pl  view on Meta::CPAN


use Modern::Perl;
use System::Command;
use File::Which;
use Mojo::IOLoop;

my $cmd;
my $force_close = 0;
my $timer;
my @streams = ();

$timer = Mojo::IOLoop->timer(

eg/run_system_cmd.pl  view on Meta::CPAN


use Modern::Perl;
use Mojolicious::Lite;
use System::Command;
use Mojo::IOLoop;
use Mojo::Util qw(xml_escape);

my %results;

get '/' => sub {
	my $self = shift;

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

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