App-Nopaste

 view release on metacpan or  search on metacpan

Changes  view on Meta::CPAN

          being installed

1.000   2014-12-12 03:25:40Z
        - fix the accidental loss of the plugins() method in 0.97 (thanks,
          Dean Hamstead!)

0.99    2014-12-10 04:53:43Z
        - gist URLs now use HTTPS (thanks, Darian Anthony Patrick!)

0.98    2014-11-22 07:45:48Z
        - make install prompts a bit more intelligible

0.97    2014-11-16 19:29:13Z
        - switched the JSON backend in the Gist plugin from JSON.pm to
          JSON::MaybeXS

0.96    2014-01-29 03:24:58Z
        - added missing prereqs

0.95    2014-01-26 17:41:29Z
        - bumped the minimum version needed for the (optional) prerequisite

META.json  view on Meta::CPAN

                  "always_recommend" : 1,
                  "always_suggest" : 0,
                  "check_prereqs" : 1,
                  "default" : "0",
                  "description" : "pastebin.com support",
                  "name" : "pastebin",
                  "phase" : "runtime",
                  "prereqs" : {
                     "WWW::Pastebin::PastebinCom::Create" : "1.003"
                  },
                  "prompt" : 1,
                  "require_develop" : 1,
                  "type" : "requires"
               }
            },
            "name" : "pastebin",
            "version" : "0.023"
         },
         {
            "class" : "Dist::Zilla::Plugin::OptionalFeature",
            "config" : {

META.json  view on Meta::CPAN

                  "always_recommend" : 1,
                  "always_suggest" : 0,
                  "check_prereqs" : 1,
                  "default" : "0",
                  "description" : "copying of URLs with -x/--copy",
                  "name" : "clipboard",
                  "phase" : "runtime",
                  "prereqs" : {
                     "Clipboard" : "0"
                  },
                  "prompt" : 1,
                  "require_develop" : 1,
                  "type" : "requires"
               }
            },
            "name" : "clipboard",
            "version" : "0.023"
         },
         {
            "class" : "Dist::Zilla::Plugin::OptionalFeature",
            "config" : {

META.json  view on Meta::CPAN

                  "always_recommend" : 1,
                  "always_suggest" : 0,
                  "check_prereqs" : 1,
                  "default" : "0",
                  "description" : "opening of URLs in a browser with --open_url/--open/-o",
                  "name" : "browser",
                  "phase" : "runtime",
                  "prereqs" : {
                     "Browser::Open" : "0"
                  },
                  "prompt" : 1,
                  "require_develop" : 1,
                  "type" : "requires"
               }
            },
            "name" : "browser",
            "version" : "0.023"
         },
         {
            "class" : "Dist::Zilla::Plugin::Deprecated",
            "config" : {

META.yml  view on Meta::CPAN

        Dist::Zilla::Plugin::OptionalFeature:
          always_recommend: 1
          always_suggest: 0
          check_prereqs: '1'
          default: '0'
          description: 'pastebin.com support'
          name: pastebin
          phase: runtime
          prereqs:
            WWW::Pastebin::PastebinCom::Create: '1.003'
          prompt: 1
          require_develop: 1
          type: requires
      name: pastebin
      version: '0.023'
    -
      class: Dist::Zilla::Plugin::OptionalFeature
      config:
        Dist::Zilla::Plugin::OptionalFeature:
          always_recommend: 1
          always_suggest: 0
          check_prereqs: '1'
          default: '0'
          description: 'copying of URLs with -x/--copy'
          name: clipboard
          phase: runtime
          prereqs:
            Clipboard: '0'
          prompt: 1
          require_develop: 1
          type: requires
      name: clipboard
      version: '0.023'
    -
      class: Dist::Zilla::Plugin::OptionalFeature
      config:
        Dist::Zilla::Plugin::OptionalFeature:
          always_recommend: 1
          always_suggest: 0
          check_prereqs: '1'
          default: '0'
          description: 'opening of URLs in a browser with --open_url/--open/-o'
          name: browser
          phase: runtime
          prereqs:
            Browser::Open: '0'
          prompt: 1
          require_develop: 1
          type: requires
      name: browser
      version: '0.023'
    -
      class: Dist::Zilla::Plugin::Deprecated
      config:
        Dist::Zilla::Plugin::Deprecated:
          all: 0
          modules:

Makefile.PL  view on Meta::CPAN

  "WWW::Mechanize" => 0,
  "namespace::clean" => "0.19",
  "parent" => 0,
  "strict" => 0,
  "warnings" => 0
);

# inserted by Dist::Zilla::Plugin::DynamicPrereqs 0.035
requires('WWW::Pastebin::PastebinCom::Create', '1.003')
  if has_module('WWW::Pastebin::PastebinCom::Create', '1.003')
    || prompt('install pastebin.com support? [y/N]', 'N') =~ /^y/i;
requires('Clipboard')
  if has_module('Clipboard')
    || prompt('install copying of URLs with -x/--copy? [y/N]', 'N') =~ /^y/i;
requires('Browser::Open')
  if has_module('Browser::Open')
    || prompt('install opening of URLs in a browser with --open_url/--open/-o? [y/N]', 'N') =~ /^y/i;


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };



( run in 1.826 second using v1.01-cache-2.11-cpan-6aa56a78535 )