Skip to content

Commit

Permalink
need nc 0.19 to get the version that uses non-deprecated Package::Sta…
Browse files Browse the repository at this point in the history
…sh interfaces
  • Loading branch information
karenetheridge committed Aug 16, 2015
1 parent 97e374f commit b99ce5f
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/App/Nopaste.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ our $VERSION = '1.005';
use 5.008003;
use Module::Pluggable search_path => 'App::Nopaste::Service', sub_name => '_plugins';
use Class::Load 'load_class';
use namespace::clean;
use namespace::clean 0.19;

use base 'Exporter';
our @EXPORT_OK = 'nopaste';
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Nopaste/Command.pm
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Getopt::Long::Descriptive ();

use App::Nopaste;
use Module::Runtime 'use_module';
use namespace::clean;
use namespace::clean 0.19;

sub new_with_options {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Nopaste/Service/Gist.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use base 'App::Nopaste::Service';
use File::Basename ();
use JSON::MaybeXS;
use Module::Runtime 'use_module';
use namespace::clean;
use namespace::clean 0.19;

sub available { 1 }
sub forbid_in_default { 0 }
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Nopaste/Service/PastebinCom.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ our $VERSION = '1.005';

use base 'App::Nopaste::Service';
use Module::Runtime 'use_module';
use namespace::clean;
use namespace::clean 0.19;

sub available {
eval { use_module('WWW::Pastebin::PastebinCom::Create'); 1 }
Expand Down
2 changes: 1 addition & 1 deletion lib/App/Nopaste/Service/ssh.pm
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use File::Temp;
use File::Spec;
use POSIX qw(strftime);
use URI::Escape qw(uri_escape);
use namespace::clean;
use namespace::clean 0.19;

sub run {
my ($self, %args) = @_;
Expand Down

0 comments on commit b99ce5f

Please sign in to comment.