-
-
23 Jul 2019 02:01:01 UTC
- Distribution: App-Nopaste
- Module version: 1.013
- Source (raw)
- Browse (raw)
- Changes
- Homepage
- How to Contribute
- Repository
- Issues (4)
- Testers (1421 / 0 / 0)
- Kwalitee
Bus factor: 2- 52.87% Coverage
- License: perl_5
- Perl: v5.8.3
- Activity
24 month- Tools
- Download (52.46KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 32 contributors-
Shawn M Moore,
-
Shawn M Moore
-
Thomas Sibley
-
Ricardo Signes
-
François Gannaz
-
Justin Hunter
-
Kevin Falcone
-
Zoffix Znet
-
Jesse Luehrs
-
Dean Hamstead
-
David Golden
-
Rafael Kitover
-
Sergey Romanov
-
Zakariyya Mughal
-
gregor herrmann
-
vti
-
Ævar Arnfjörð Bjarmason
-
Сергей Романов
-
Andrew Rodland
-
יובל קוג'מן (Yuval Kogman)
-
Arthur Axel 'fREW' Schmidt
-
Dan Book
-
Darian Anthony Patrick
-
David Bremner
-
David J. Shultz
-
Graham Knop
-
Jason Mills
-
John Goulah
-
Maximilian Gass
-
Sebastian Paaske Tørholm
-
Shlomi Fish
-
Tatsuhiko Miyagawa
- Dependencies
- Class::Load
- Exporter
- File::Spec
- File::Temp
- Getopt::Long::Descriptive
- JSON::MaybeXS
- LWP::UserAgent
- Module::Pluggable
- Module::Runtime
- POSIX
- Path::Tiny
- URI::Escape
- WWW::Mechanize
- namespace::clean
- parent
- strict
- warnings
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
- NAME
- VERSION
- SYNOPSIS
- DESCRIPTION
- INTERFACE
- SEE ALSO
- COPYRIGHT AND LICENSE
- SUPPORT
- AUTHOR
- CONTRIBUTORS
- COPYRIGHT AND LICENSE
NAME
App::Nopaste - Easy access to any pastebin
VERSION
version 1.013
SYNOPSIS
use App::Nopaste 'nopaste'; my $url = nopaste(q{ perl -wle 'print "Prime" if (1 x shift) !~ /^1?$|^(11+?)\1+$/' [number] }); # or on the command line: nopaste test.pl => http://pastebin.com/fcba51f
DESCRIPTION
Pastebins (also known as nopaste sites) let you post text, usually code, for public viewing. They're used a lot in IRC channels to show code that would normally be too long to give directly in the channel (hence the name nopaste).
Each pastebin is slightly different. When one pastebin goes down (I'm looking at you, http://paste.husk.org), then you have to find a new one. And if you usually use a script to publish text, then it's too much hassle.
This module aims to smooth out the differences between pastebins, and provides redundancy: if one site doesn't work, it just tries a different one.
It's also modular: you only need to put on CPAN a App::Nopaste::Service::Foo module and anyone can begin using it.
INTERFACE
CLI
See the documentation in App::Nopaste::Command.
nopaste
use App::Nopaste 'nopaste'; my $url = nopaste( text => "Full text to paste (the only mandatory argument)", desc => "A short description of the paste", nick => "Your nickname", lang => "perl", chan => "#moose", private => 1, # default: 0 # this is the default, but maybe you want to do something different error_handler => sub { my ($error, $service) = @_; warn "$service: $error"; }, warn_handler => sub { my ($warning, $service) = @_; warn "$service: $warning"; }, # you may specify the services to use - but you don't have to services => ["Shadowcat", "Gist"], ); print $url if $url;
The
nopaste
function will return the URL of the paste on success, orundef
on failure.For each failure, the
error_handler
argument is invoked with the error message and the service that issued it.For each warning, the
warn_handler
argument is invoked with the warning message and the service that issued it.SEE ALSO
WebService::NoPaste, WWW::Pastebin::PastebinCom::Create, Devel::REPL::Plugin::Nopaste
http://perladvent.org/2011/2011-12-14.html
COPYRIGHT AND LICENSE
Copyright 2008- Shawn M Moore.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
SUPPORT
Bugs may be submitted through the RT bug tracker (or bug-App-Nopaste@rt.cpan.org).
AUTHOR
Shawn M Moore, <sartak@gmail.com>
CONTRIBUTORS
Shawn M Moore <code@sartak.org>
Karen Etheridge <ether@cpan.org>
Thomas Sibley <tsibley@cpan.org>
Ricardo Signes <rjbs@cpan.org>
François Gannaz <francois.gannaz@silecs.info>
Justin Hunter <justin.d.hunter@gmail.com>
Kevin Falcone <kevin@jibsheet.com>
Zoffix Znet <cpan@zoffix.com>
Jesse Luehrs <doy@tozt.net>
Dean Hamstead <dean@fragfest.com.au>
David Golden <dagolden@cpan.org>
Rafael Kitover <rkitover@cpan.org>
Sergey Romanov <complefor@rambler.ru>
Zakariyya Mughal <zaki.mughal@gmail.com>
gregor herrmann <gregoa@debian.org>
vti <viacheslav.t@gmail.com>
Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Сергей Романов <sromanov@cpan.org>
Andrew Rodland <andrew@cleverdomain.org>
יובל קוג'מן (Yuval Kogman) <nothingmuch@woobling.org>
Arthur Axel 'fREW' Schmidt <frioux@gmail.com>
Dan Book <grinnz@gmail.com>
Darian Anthony Patrick <dap@darianpatrick.com>
David Bremner <bremner@unb.ca>
David J. Shultz <djshultz@gmail.com>
Graham Knop <haarg@haarg.org>
Jason Mills <jmmills@cpan.org>
John Goulah <jgoulah@gmail.com>
Maximilian Gass <mxey@ghosthacking.net>
Sebastian Paaske Tørholm <Eckankar+github@gmail.com>
Shlomi Fish <shlomif@shlomifish.org>
Tatsuhiko Miyagawa <miyagawa@bulknews.net>
COPYRIGHT AND LICENSE
This software is copyright (c) 2008 by Shawn M Moore.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
Module Install Instructions
To install App::Nopaste, copy and paste the appropriate command in to your terminal.
cpanm App::Nopaste
perl -MCPAN -e shell install App::Nopaste
For more information on module installation, please visit the detailed CPAN module installation guide.