blob: 912cbcbd32d4e579a176bda7e0b345f087c136e4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
# vim: set et ts=4 sw=4:
package ManaTools::Version;
#============================================================= -*-perl-*-
=head1 NAME
Manatools::Version - Role to manage command line
=head1 SYNOPSIS
package Foo;
use Moose;
with 'Manatools::Version';
1;
=head1 DESCRIPTION
Version just define a role in which command line is accessible.
=head1 SUPPORT
You can find documentation for this module with the perldoc command:
perldoc Manatools::Version
=head1 SEE ALSO
=head1 AUTHOR
Angelo Naselli <anaselli@linux.it>
=head1 COPYRIGHT and LICENSE
Copyright (C) 2015-2016, Angelo Naselli.
This module is free software. You can redistribute it and/or
modify it under the terms of the Artistic License 2.0.
This program is distributed in the hope that it will be
useful, but without any warranty; without even the implied
warranty of merchantability or fitness for a particular purpose
=cut
use Moose::Role;
=head2 attributes
=head3 definitions
Version: manatools common version override it
if you want your own versioning
=cut
#=============================================================
=head1 VERSION
Version 1.1.1
See Changes for details
=cut
our $VERSION = '1.1.1';
has 'Version' => (
is => 'ro',
isa => 'Str',
init_arg => undef,
default => sub {
return $VERSION;
}
);
no Moose::Role;
1;
|