Devel-REPL-Plugin-Clipboard

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 4.300030, CPAN::Meta::Converter version 2.120921'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
name: Devel-REPL-Plugin-Clipboard
requires:
  Clipboard: 0
  Devel::REPL::Plugin: 0
  Term::ANSIColor: 2.01
  namespace::autoclean: 0
resources:
  repository: git://github.com/mcsnolte/Devel-REPL-Plugin-Clipboard.git
version: 0.004

Makefile.PL  view on Meta::CPAN

    "Test::More" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => "6.30"
  },
  "DISTNAME" => "Devel-REPL-Plugin-Clipboard",
  "EXE_FILES" => [],
  "LICENSE" => "perl",
  "NAME" => "Devel::REPL::Plugin::Clipboard",
  "PREREQ_PM" => {
    "Clipboard" => 0,
    "Devel::REPL::Plugin" => 0,
    "Term::ANSIColor" => "2.01",
    "namespace::autoclean" => 0
  },
  "VERSION" => "0.004",
  "test" => {
    "TESTS" => "t/*.t"
  }
);


README  view on Meta::CPAN

NAME
    Devel::REPL::Plugin::Clipboard - #clip output to clipboard

VERSION
    version 0.004

COMMANDS
    This module provides the following command to your Devel::REPL shell:

  #clip
    The "#clip" puts the output of the last command on your clipboard.

lib/Devel/REPL/Plugin/Clipboard.pm  view on Meta::CPAN

package Devel::REPL::Plugin::Clipboard;

# ABSTRACT: #clip output to clipboard

use Devel::REPL::Plugin;
use namespace::autoclean;
use Clipboard;
use Term::ANSIColor 2.01 qw(colorstrip);


sub BEFORE_PLUGIN {
	my $self = shift;
	$self->load_plugin('Turtles');
	return;
}

lib/Devel/REPL/Plugin/Clipboard.pm  view on Meta::CPAN

}

1;

__END__

=pod

=head1 NAME

Devel::REPL::Plugin::Clipboard - #clip output to clipboard

=head1 VERSION

version 0.004

=head1 COMMANDS

This module provides the following command to your Devel::REPL shell:

=head2 #clip

t/load.t  view on Meta::CPAN

#!/usr/bin/env perl

use strict;
use warnings;

use Test::More tests => 1;

use_ok( 'Devel::REPL::Plugin::Clipboard' );



( run in 0.296 second using v1.01-cache-2.11-cpan-4ee56698ea0 )