~ubuntu-branches/ubuntu/trusty/libsub-exporter-formethods-perl/trusty

« back to all changes in this revision

Viewing changes to lib/Sub/Exporter/ForMethods.pm

  • Committer: Package Import Robot
  • Author(s): gregor herrmann, Jonathan Yu, Ansgar Burchardt, gregor herrmann, Salvatore Bonaccorso, Axel Beckert
  • Date: 2013-10-23 21:31:25 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20131023213125-iaciz5s2m8rxirlh
Tags: 0.100051-1
* Team upload.

[ Jonathan Yu ]
* New upstream release
* Update copyright information per upstream

[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.

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

[ Salvatore Bonaccorso ]
* Change search.cpan.org based URIs to metacpan.org based URIs

[ Axel Beckert ]
* debian/copyright: migrate pre-1.0 format to 1.0 using "cme fix dpkg-
  copyright"

[ gregor herrmann ]
* New upstream release.
* Switch to "3.0 (quilt)" source format.
* Update years of upstream copyright and license stanzas.
* Bump debhelper compatibility level to 8.
* Declare compliance with Debian Policy 3.9.4.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
use strict;
2
2
use warnings;
3
3
package Sub::Exporter::ForMethods;
4
 
our $VERSION = '0.091970';
5
 
 
 
4
{
 
5
  $Sub::Exporter::ForMethods::VERSION = '0.100051';
 
6
}
6
7
# ABSTRACT: helper routines for using Sub::Exporter to build methods
7
8
 
8
9
use Sub::Name ();
9
10
 
10
 
use Sub::Exporter -setup => {
 
11
use Sub::Exporter 0.978 -setup => {
11
12
  exports => [ qw(method_installer) ],
12
13
};
13
14
 
45
46
 
46
47
=head1 VERSION
47
48
 
48
 
version 0.091970
 
49
version 0.100051
49
50
 
50
51
=head1 SYNOPSIS
51
52
 
116
117
 
117
118
=head1 AUTHOR
118
119
 
119
 
  Ricardo Signes <rjbs@cpan.org>
 
120
Ricardo Signes <rjbs@cpan.org>
120
121
 
121
122
=head1 COPYRIGHT AND LICENSE
122
123
 
123
 
This software is copyright (c) 2009 by Ricardo Signes.
 
124
This software is copyright (c) 2013 by Ricardo Signes.
124
125
 
125
126
This is free software; you can redistribute it and/or modify it under
126
 
the same terms as perl itself.
127
 
 
128
 
=cut 
129
 
 
130
 
 
 
127
the same terms as the Perl 5 programming language system itself.
 
128
 
 
129
=cut