do not include .git directory
[catagits/Reaction.git] / lib / Reaction / UI / ViewPort / Field / Number.pm
index f66e03d..e8bab8a 100644 (file)
@@ -1,31 +1,13 @@
 package Reaction::UI::ViewPort::Field::Number;
 
 use Reaction::Class;
+use namespace::clean -except => [ qw(meta) ];
+use MooseX::Types::Moose qw/Num/;
 
-class Number is 'Reaction::UI::ViewPort::Field', which {
+extends 'Reaction::UI::ViewPort::Field';
 
-  #has '+layout' => (default => 'textfield');
+has '+value' => (isa => Num);
 
-};
+__PACKAGE__->meta->make_immutable;
 
 1;
-
-=head1 NAME
-
-Reaction::UI::ViewPort::Field::Number
-
-=head1 DESCRIPTION
-
-=head1 SEE ALSO
-
-=head2 L<Reaction::UI::ViewPort::Field>
-
-=head1 AUTHORS
-
-See L<Reaction::Class> for authors.
-
-=head1 LICENSE
-
-See L<Reaction::Class> for the license.
-
-=cut