Moose Hackathon Agenda
- Traits in C::MOP
- removing T::E from Moose/MOP
- adding lives_ok/dies_ok to Test::Moose
- merging C::MOP and Moose
- Antlers
- merging MooseX modules into Moose and/or core
- MX::AH into core
- MooseX::Traits -> Moose::Traits
diff -ur old/Parser.pm new/Parser.pm | |
--- old/Parser.pm 2010-06-15 13:57:43.000000000 -0500 | |
+++ new/Parser.pm 2011-03-01 13:44:02.000000000 -0600 | |
@@ -260,6 +260,12 @@ | |
unless $http and $http =~ /^HTTP\/(\d+)\.(\d+)$/i; | |
($major,$minor) = ($1,$2); | |
die 'HTTP requests not allowed' unless $self->{request}; | |
+ | |
+ # If the requested uri was a path instead of a full uri, we need to tell URI that we don't | |
+ # know the scheme, otherwise it will interpret paths that start with a |
package Class; | |
use Moose; | |
use Moose::Util::TypeConstraints; | |
## Whatever, you get the idea. | |
sub trim_whitespace { my $str = shift; $str =~ s/^\s+|\s+$//; $str }; | |
sub boolify { my $str = shift; $str =~ /^y/i ? 1 : $str }; | |
## Guess i need to say an OLBool is just a regular bool that coerces, stringifies, and removes padding... JOYZER. Shouldn't the where be at the very least, inherited it is a subtype. |
Moose Hackathon Agenda