Skip to content

Commit

Permalink
Version 20110322.0027_001
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Mar 21, 2011
1 parent 7b641ba commit 396dd17
Show file tree
Hide file tree
Showing 7 changed files with 100 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ nytprof*
.DS_Store
MYMETA.yml
*.o
MYMETA.json

2 changes: 1 addition & 1 deletion Changes
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Next
20110322.0027_001 Tue, 22 Mar 2011 00:27:00 +1100
New Features
* Added support for Perl 6 style type syntax backed by Any::Moose
(barefootcoder) [github #3]
Expand Down
26 changes: 26 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ lib/Method/Signatures.pm
lib/Method/Signatures/Parser.pm
MANIFEST This list of files
MANIFEST.SKIP
META.json
META.yml
t/alias.t
t/anon.t
Expand All @@ -15,22 +16,47 @@ t/begin.t
t/caller.t
t/debugger.t
t/defaults.t
t/error_reporting.t
t/examples/iso_date_example.t
t/examples/silly.t
t/examples/strip_ws.t
t/func.t
t/into.t
t/invocant.t
t/lib/Bad.pm
t/lib/BadType.pm
t/lib/BasicRoleTest.pm
t/lib/Dev/Null.pm
t/lib/GenErrorRegex.pm
t/lib/InnerBadType.pm
t/lib/InnerUnknownType.pm
t/lib/MooseLoadTest.pm
t/lib/MooseRoleTest.pm
t/lib/MouseRoleTest.pm
t/lib/NoOverrides.pm
t/lib/OverrideTypeCheck.pm
t/lib/UnknownType.pm
t/method.t
t/named.t
t/odd_number.t
t/one_line.t
t/optional.t
t/override_nothing.t
t/override_typecheck.t
t/paren_on_own_line.t
t/paren_plus_open_block.t
t/refs.t
t/required.t
t/ro.t
t/role_check_basic.t
t/role_check_moose.t
t/role_check_mouse.t
t/simple.plx
t/split_proto.t
t/syntax_errors.t
t/traits.t
t/type_check.t
t/typeload_moose.t
t/typeload_nomoose.t
t/typeload_notypes.t
t/types.t
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,4 @@
^\.git
^\.#
^MYMETA.yml$
^MYMETA\.json$
64 changes: 64 additions & 0 deletions META.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
{
"abstract" : "method and function declarations with signatures and no source filter",
"author" : [
"Michael G Schwern <schwern@pobox.com>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.110580",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "Method-Signatures",
"prereqs" : {
"build" : {
"requires" : {
"Module::Build" : "0.26",
"Test::Builder" : "0.82",
"Test::More" : "0.82",
"Test::Warn" : "0.10"
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.26"
}
},
"runtime" : {
"requires" : {
"Const::Fast" : "0.006",
"Data::Alias" : "1.08",
"Devel::BeginLift" : "0.001001",
"Devel::Declare::MethodInstaller::Simple" : "0.003003",
"PPI" : "1.203",
"perl" : "v5.8.1"
}
}
},
"provides" : {
"Method::Signatures" : {
"file" : "lib/Method/Signatures.pm",
"version" : "20110322.0027_001"
},
"Method::Signatures::Parser" : {
"file" : "lib/Method/Signatures/Parser.pm",
"version" : 0
}
},
"release_status" : "testing",
"resources" : {
"bugtracker" : {
"web" : "http://rt.cpan.org/NoAuth/Bugs.html?Dist=Method-Signatures"
},
"license" : [
"http://dev.perl.org/licenses/"
],
"repository" : {
"url" : "https://github.com/schwern/method-signatures/tree"
}
},
"version" : "20110322.0027_001"
}
8 changes: 5 additions & 3 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ build_requires:
Test::Warn: 0.10
configure_requires:
Module::Build: 0.26
generated_by: 'Module::Build version 0.3624'
dynamic_config: 1
generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.110580'
license: perl
meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -18,9 +19,10 @@ name: Method-Signatures
provides:
Method::Signatures:
file: lib/Method/Signatures.pm
version: 20110216.1153_01
version: 20110322.0027_001
Method::Signatures::Parser:
file: lib/Method/Signatures/Parser.pm
version: 0
requires:
Const::Fast: 0.006
Data::Alias: 1.08
Expand All @@ -32,4 +34,4 @@ resources:
bugtracker: http://rt.cpan.org/NoAuth/Bugs.html?Dist=Method-Signatures
license: http://dev.perl.org/licenses/
repository: https://github.com/schwern/method-signatures/tree
version: 20110216.1153_01
version: 20110322.0027_001
2 changes: 1 addition & 1 deletion lib/Method/Signatures.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use base 'Devel::Declare::MethodInstaller::Simple';
use Method::Signatures::Parser;
use Data::Alias;

our $VERSION = '20110216.1153_01';
our $VERSION = '20110322.0027_001';

our $DEBUG = $ENV{METHOD_SIGNATURES_DEBUG} || 0;

Expand Down

0 comments on commit 396dd17

Please sign in to comment.