App-Pastebin-Create2

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

{
   "abstract" : "Simple CLI App to create and upload to Pastebin.com",
   "author" : [
      "faraco <skelic3@gmail.com>, mfzz <mfzz@cpan.org>"
   ],
   "dynamic_config" : 0,
   "generated_by" : "Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150001",
   "license" : [
      "perl_5"
   ],
   "meta-spec" : {
      "url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",

META.yml  view on Meta::CPAN

---
abstract: 'Simple CLI App to create and upload to Pastebin.com'
author:
  - 'faraco <skelic3@gmail.com>, mfzz <mfzz@cpan.org>'
build_requires: {}
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 0
generated_by: 'Dist::Zilla version 6.008, CPAN::Meta::Converter version 2.150001'
license: perl
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html

Makefile.PL  view on Meta::CPAN

# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.008.
use strict;
use warnings;

use 5.008;

use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT" => "Simple CLI App to create and upload to Pastebin.com",
  "AUTHOR" => "faraco <skelic3\@gmail.com>, mfzz <mfzz\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME" => "App-Pastebin-Create2",
  "EXE_FILES" => [
    "bin/pastebin-create2"
  ],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.008",

README  view on Meta::CPAN



This archive contains the distribution App-Pastebin-Create2,
version 0.15:

  Simple CLI App to create and upload to Pastebin.com

This software is copyright (c) 2017 by faraco <skelic3@gmail.com>, mfzz <mfzz@cpan.org>.

This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.


This README file was generated by Dist::Zilla::Plugin::Readme v6.008.

README.md  view on Meta::CPAN

[![Build Status](https://travis-ci.org/faraco/App-Pastebin-Create2.svg?branch=master)](https://travis-ci.org/faraco/App-Pastebin-Create2)
### App::Pastebin::Create2

A command line tool written in Perl to upload paste to Pastebin.com

*make sure you configured your cpan first!*
> cpan: `cpan App::Pastebin::Create2`

> cpanm: `cpanm App::Pastebin::Create2`

lib/App/Pastebin/Create2.pm  view on Meta::CPAN

use strict;
use warnings;
package App::Pastebin::Create2;
#ABSTRACT: Simple CLI App to create and upload to Pastebin.com
# FILE HOLDER/THIS IS COMMAND LINE APP, executable name is pastebin-create2
# The executable located in bin/
# type pastebin-create2 -h for usage
our $VERSION = '0.15'; # VERSION

=pod

=encoding UTF-8

=head1 NAME

App::Pastebin::Create2 - Simple CLI App to create and upload to Pastebin.com

=head1 VERSION

version 0.15

=head1 SYNOPSIS

	pastebin-create --text 'TEXT' --format 'none' --expiry 10m --private 0 --desc 'A TITLE'

=head1 Note



( run in 1.892 second using v1.01-cache-2.11-cpan-b16cb0d3907 )