diff --git a/Build.PL b/Build.PL index 42e078b..0316421 100644 --- a/Build.PL +++ b/Build.PL @@ -9,7 +9,6 @@ my $builder = Module::Build->new( }, requires => { 'autodie' => 0, - 'lambda' => 0, 'Module::Runtime' => 0, 'Moose' => 2, 'MooseX::Method::Signatures' => 0, diff --git a/lib/Sipwise/Base.pm b/lib/Sipwise/Base.pm index cd16069..03a446f 100644 --- a/lib/Sipwise/Base.pm +++ b/lib/Sipwise/Base.pm @@ -5,7 +5,6 @@ use parent 'autodie'; our $VERSION = '1.001'; our %features = ( - lambda => q(use lambda 'λ';), perl5i => q(use perl5i::2 -skip => [qw(Signatures Try::Tiny)];), Moose => q(use Moose qw(after augment before extends has inner override super with);), 'MooseX::Method::Signatures' => q(use MooseX::Method::Signatures;), @@ -58,7 +57,7 @@ The purpose of this module is to reduce the amount of boilerplate code and to en available by default. This is in the spirit of L. -Switches on the functionality of the pragmatic modules L, L, L, L, +Switches on the functionality of the pragmatic modules L, L, L, L, L. =head1 INTERFACE @@ -71,7 +70,7 @@ By passing an arrayref to C<-skip>, you can disable features: use Sipwise::Base -skip => ['Moose']; # skip importing Moose -The features strings are C, C, C, C, C. +The features strings are C, C, C, C. =head2 Exports diff --git a/t/exports.t b/t/exports.t index baa3695..f62701a 100644 --- a/t/exports.t +++ b/t/exports.t @@ -26,7 +26,7 @@ eval { ok !$@, 'switch syntax is available'; ok(__PACKAGE__->can($_), "$_ function name is available") - for qw(λ after augment before extends has inner override super with method list); + for qw(after augment before extends has inner override super with method list); eval 'use t::MethodSignatures'; try {