v0.02 The CPAN Edition
This commit is contained in:
parent
bda10c52aa
commit
9fbef3a938
|
@ -0,0 +1,8 @@
|
|||
Revision history for Perl module App::Nopaste::Service::WerePaste
|
||||
|
||||
0.02 2015-11-19
|
||||
- Minor layout changes, preparation for submission to CPAN
|
||||
- Testing added
|
||||
|
||||
0.01 2015-04-13
|
||||
- Initial release
|
|
@ -0,0 +1,6 @@
|
|||
Changes
|
||||
Makefile.PL
|
||||
MANIFEST
|
||||
MANIFEST.SKIP
|
||||
t/00-load.t
|
||||
lib/App/Nopaste/Service/WerePaste.pm
|
|
@ -0,0 +1,9 @@
|
|||
^blib
|
||||
^pm_to_blib
|
||||
^\.git
|
||||
^MYMETA
|
||||
^Makefile$
|
||||
\.old$
|
||||
\.tar\.gz$
|
||||
README\.pod
|
||||
|
|
@ -0,0 +1,41 @@
|
|||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
use ExtUtils::MakeMaker;
|
||||
|
||||
my ($mm) = $ExtUtils::MakeMaker::VERSION =~ /^([^_]+)/;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'App::Nopaste::Service::WerePaste',
|
||||
VERSION_FROM => 'lib/App/Nopaste/Service/WerePaste.pm',
|
||||
ABSTRACT_FROM => 'lib/App/Nopaste/Service/WerePaste.pm',
|
||||
AUTHOR => 'Matthew Connelly <maff@cpan.org>',
|
||||
PREREQ_PM => {
|
||||
'App::Nopaste' => '0.91',
|
||||
},
|
||||
( $mm >= 6.31
|
||||
? ( LICENSE => 'mit' )
|
||||
: ()
|
||||
),
|
||||
( $mm < 6.46
|
||||
? ()
|
||||
: ( META_MERGE => {
|
||||
resources => {
|
||||
license => 'http://dev.perl.org/licenses/',
|
||||
repository => 'https://github.com/Maffsie/App-Nopaste-Service-WerePaste',
|
||||
bugtracker => 'https://github.com/Maffsie/App-Nopaste-Service-WerePaste/issues',
|
||||
},
|
||||
no_index => {directory => [qw/t/]},
|
||||
},
|
||||
META_ADD => {
|
||||
build_requires => {},
|
||||
configure_requires => {},
|
||||
test_requires => {
|
||||
'Test::More' => '0.47',
|
||||
},
|
||||
},
|
||||
)
|
||||
),
|
||||
test => { TESTS => 't/*.t' }
|
||||
);
|
||||
|
|
@ -0,0 +1,78 @@
|
|||
=pod
|
||||
|
||||
=head1 NAME
|
||||
|
||||
App::Nopaste::Service::WerePaste - nopaste service for L<WerePaste>
|
||||
|
||||
=head1 VERSION
|
||||
|
||||
version 0.004
|
||||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
L<WerePaste|https://github.com/Maffsie/WerePaste> Service for L<nopaste>.
|
||||
|
||||
To use, simple use:
|
||||
|
||||
$ echo "text" | nopaste -s WerePaste
|
||||
|
||||
By default it pastes to L<http://paste.were.space>, but you can
|
||||
override this be setting the C<WEREPASTE_URL> environment variable.
|
||||
|
||||
You can set HTTP Basic Auth credentials to use for the nopaste service
|
||||
if necessary by using:
|
||||
|
||||
WEREPASTE_USER=username
|
||||
WEREPASTE_PASS=password
|
||||
|
||||
The expiration of the post can be modified by setting the C<WEREPASTE_EXP>
|
||||
environment variable. Acceptable values are things like:
|
||||
|
||||
WEREPASTE_EXP=weeks:1
|
||||
WEREPASTE_EXP=years:1:months:2
|
||||
WEREPASTE_EXP=weeks:1:days:2:hours:12:minutes:10:seconds:5
|
||||
WEREPASTE_EXP=never:1 # Never Expire
|
||||
|
||||
=head1 AUTHOR
|
||||
|
||||
Matthew Connelly <maff@cpan.org>
|
||||
based on work by
|
||||
William Wolf <throughnothing@gmail.com>
|
||||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Matthew Connelly
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
This work was originally based on works by William Wolf.
|
||||
The license for the original work (CC0) is as follows:
|
||||
|
||||
|
||||
William Wolf has dedicated the work to the Commons by waiving all of his
|
||||
or her rights to the work worldwide under copyright law and all related or
|
||||
neighboring legal rights he or she had in the work, to the extent allowable by
|
||||
law.
|
||||
|
||||
Works under CC0 do not require attribution. When citing the work, you should
|
||||
not imply endorsement by the author.
|
||||
|
||||
=cut
|
|
@ -2,7 +2,7 @@ use strict;
|
|||
use warnings;
|
||||
package App::Nopaste::Service::WerePaste;
|
||||
{
|
||||
$App::Nopaste::Service::WerePaste::VERSION = '0.001';
|
||||
$App::Nopaste::Service::WerePaste::VERSION = '0.02';
|
||||
}
|
||||
use Encode qw/decode_utf8/;
|
||||
|
||||
|
@ -62,13 +62,13 @@ version 0.004
|
|||
|
||||
=head1 SYNOPSIS
|
||||
|
||||
L<WerePaste|https://github.com/MaffC/WerePaste> Service for L<nopaste>.
|
||||
L<WerePaste|https://github.com/Maffsie/WerePaste> Service for L<nopaste>.
|
||||
|
||||
To use, simple use:
|
||||
|
||||
$ echo "text" | nopaste -s WerePaste
|
||||
|
||||
By default it pastes to L<http://paste.were.space/|http://paste.were.space/>, but you can
|
||||
By default it pastes to L<http://paste.were.space>, but you can
|
||||
override this be setting the C<WEREPASTE_URL> environment variable.
|
||||
|
||||
You can set HTTP Basic Auth credentials to use for the nopaste service
|
||||
|
@ -93,6 +93,31 @@ William Wolf <throughnothing@gmail.com>
|
|||
|
||||
=head1 COPYRIGHT AND LICENSE
|
||||
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2015 Matthew Connelly
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
|
||||
This work was originally based on works by William Wolf.
|
||||
The license for the original work (CC0) is as follows:
|
||||
|
||||
|
||||
William Wolf has dedicated the work to the Commons by waiving all of his
|
||||
or her rights to the work worldwide under copyright law and all related or
|
|
@ -0,0 +1,9 @@
|
|||
#!/usr/bin/env perl
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Test::More qw( no_plan );
|
||||
|
||||
BEGIN {
|
||||
use_ok('App::Nopaste::Service::WerePaste');
|
||||
}
|
Loading…
Reference in New Issue