X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=moose-class%2Fslides%2Findex.html;h=adf159fe30bf349b099b01d6b87ecaad19794af6;hb=c030f6e8ffa441ca1cfa386722aa5a44b8c2a99a;hp=6e8daef75ee2582c521e1a1aebb08c35f16fd86c;hpb=b24924cc3079ac24af7f800585e277d727fcca25;p=gitmo%2Fmoose-presentations.git diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 6e8daef..adf159f 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -71,7 +71,8 @@ img#me05 {top: 43px;left: 36px;} @@ -892,8 +893,8 @@ use Moose;

BUILDARGS

@@ -967,6 +968,7 @@ sub BUILD { @@ -976,6 +978,7 @@ sub BUILD { @@ -1039,6 +1042,7 @@ extends 'LWP'; @@ -1107,8 +1111,7 @@ has first_name => ( is => 'ro' ); my $person = Person->new( first_name => 'Dave' ); -$person->first_name('Stevan'); -print $person->first_name; # Dave +$person->first_name('Stevan'); # dies @@ -1428,64 +1431,12 @@ use Moose;
-

Method Aliasing

- -
package FragileDancer;
-use Moose;
-
-with 'IsFragile' =>
-         { -alias =>
-               { break => 'break_bone' } },
-     'CanBreakdance' =>
-         { -alias =>
-               { break => 'break_it_down' } };
- - -
- -
-

Method Exclusion

- -
package FragileDancer;
-use Moose;
-
-with 'IsFragile' =>
-         { -alias =>
-               { break => 'break_bone' },
-           -excludes => 'break' },
-     'CanBreakdance' =>
-         { -alias =>
-               { break => 'break_it_down' },
-           -excludes => 'break' };
-
- -
-

And then ...

- -
package FragileDancer;
-use Moose;
-
-sub break {
-    my $self = shift;
-
-    $self->break_it_down;
-    if ( rand(1) < 0.5 ) {
-        $self->break_bone;
-    }
-}
-
- -
-

Still Full of Fail

+

Conflicts Are a Smell

@@ -1578,7 +1529,7 @@ use Moose; with 'HasSize'; -has size => ( is => 'ro' ); +has size => ( is => 'ro' );
@@ -1592,7 +1543,7 @@ requires 'size'; package Shirt; use Moose; -has size => ( is => 'ro' ); +has size => ( is => 'ro' ); with 'HasSize';
@@ -1614,9 +1565,9 @@ with 'HasSize';
package Comparison;
 use Moose;
 
-has [ 'left', 'right' ] => (
-    is   => 'ro',
-    does => 'Comparable',
+has [ 'left', 'right' ] => (
+    is   => 'ro',
+    does => 'Comparable',
 );
 
@@ -1913,7 +1864,7 @@ has bank => ( sub _build_bank { my $self = shift; return Bank->new( - name => 'Spire FCU' ); + name => 'Spire FCU' ); } @@ -1980,7 +1931,7 @@ has shoe_size => (
has shoes => (
     is      => 'ro',
     lazy    => 1,
-    builder => '_build_shoes',
+    builder => '_build_shoes',
 );
 
 sub _build_shoes {
@@ -2053,7 +2004,7 @@ has account => (
   
package Person;
 use Moose;
 
-has shoe_size => (
+has shoe_size => (
     is       => 'ro',
     init_arg => 'foot_size',
 );
@@ -2071,7 +2022,7 @@ print $person->shoe_size;
package Person;
 use Moose;
 
-has shoes => (
+has shoes => (
     is       => 'ro',
     init_arg => undef,
 );
@@ -2470,19 +2421,21 @@ around run => sub {
 

Augment and Inner

-
package Document;
+  
package Document;
 
 sub xml { '<doc>' . inner() . '</doc>' }
 
 package Report;
 extends 'Document';
 augment xml =>
-    sub { title() . inner() . summary() };
+    sub { my $self = shift;
+          $self->title() . inner() . $self->summary() };
 
 package TPSReport;
 extends 'Report';
 augment xml =>
-    sub { tps_xml() . inner() };
+ sub { my $self = shift; + $self->tps_xml() . inner() };
@@ -2803,7 +2756,7 @@ duck_type Car => qw( run break_down );

Subtype Shortcuts - enum

use Moose::Util::TypeConstraints;
-enum Color => qw( red blue green ) );
+enum Color => qw( red blue green );

@@ -2926,6 +2879,19 @@ no Moose;
+

Questions So Far?

+
+ +
+

Exercises

+ +
# cd exercises
+# perl bin/prove -lv t/05-types.t
+
+Iterate til this passes all its tests
+
+ +

Typed Methods (Low-tech)

package Person;
@@ -3056,9 +3022,9 @@ coerce ArrayOfInt
 
 use MyApp::Types qw( ArrayOfInt );
 
-has transaction_history => (
-    is  => 'rw',
-    isa => ArrayOfInt,
+has transaction_history => (
+    is  => 'rw',
+    isa => ArrayOfInt,
 );
@@ -3102,15 +3068,6 @@ has transaction_history => (

Questions?

-
-

Exercises

- -
# cd exercises
-# perl bin/prove -lv t/05-types.t
-
-Iterate til this passes all its tests
-
-

Part 6: Advanced Attributes

@@ -3251,7 +3208,7 @@ $alice->friend($bob); has lungs => ( is => 'ro', - isa => 'Lungs', + isa => 'Lungs', handles => [ 'inhale', 'exhale' ], ); @@ -3582,10 +3539,6 @@ print Person->meta
-

Questions?

-
- -

Exercises

# cd exercises
@@ -3595,8 +3548,20 @@ print Person->meta
 Iterate til this passes all its tests
+
+

CYOA

+ +

+ If there is time, keep going ... +

+ +

+ Otherwise, jump to slide 269 ... +

+
+
-

Part 7: A Brief Tour of MooseX

+

Bonus: A Brief Tour of MooseX

@@ -3790,18 +3755,21 @@ with HasCollection => { type => 'Int' };

Questions?

- +

+ For further reading, a few modules which use Moose ... +

-
-

The End

+
@@ -3818,6 +3786,10 @@ with HasCollection => { type => 'Int' };
+
+

The End

+
+