~ubuntu-branches/ubuntu/vivid/libmoosex-role-timer-perl/vivid

« back to all changes in this revision

Viewing changes to lib/MooseX/Role/Timer.pm

  • Committer: Package Import Robot
  • Author(s): gregor herrmann, gregor herrmann, Salvatore Bonaccorso
  • Date: 2014-01-11 22:15:50 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20140111221550-hri223k6qlt80dqt
Tags: 0.04-1
* Team upload.

[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.

[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs

[ gregor herrmann ]
* New upstream release.
* Drop patches, both applied upstream.
* Don't install boilerplate README anymore.
* Update years of upstream copyright.
* Make short description a noun phrase.
* Declare compliance with Debian Policy 3.9.5.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
package MooseX::Role::Timer;
 
2
{
 
3
  $MooseX::Role::Timer::VERSION = '0.04';
 
4
}
2
5
 
3
6
use Any::Moose '::Role';
4
7
use Time::HiRes;
5
8
use strict;
6
9
use warnings;
7
10
 
8
 
our $VERSION = 0.03;
9
 
 
10
11
=head1 NAME
11
12
 
12
13
MooseX::Role::Timer - Measure times with your object.
132
133
 
133
134
=head1 COPYRIGHT & LICENSE
134
135
 
135
 
Copyright 2010 Michael Langner, all rights reserved.
 
136
Copyright 2014 Michael Langner, all rights reserved.
136
137
 
137
138
This program is free software; you can redistribute it and/or modify it under the
138
139
same terms as Perl itself.