Skip to content

Commit dc61e4b

Browse files
committed
boilerplate
1 parent a9a5c04 commit dc61e4b

File tree

3 files changed

+79
-2
lines changed

3 files changed

+79
-2
lines changed

MANIFEST.SKIP

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# Avoid version control files.
2+
\bRCS\b
3+
\bCVS\b
4+
\bSCCS\b
5+
,v$
6+
\B\.svn\b
7+
\B\.git\b
8+
\b_darcs\b
9+
10+
# Avoid Makemaker generated and utility files.
11+
\bMANIFEST\.bak
12+
\bMakefile$
13+
\bblib/
14+
\bMakeMaker-\d
15+
\bpm_to_blib\.ts$
16+
\bpm_to_blib$
17+
\bblibdirs\.ts$ # 6.18 through 6.25 generated this
18+
19+
# Avoid Module::Build generated and utility files.
20+
\bBuild$
21+
\b_build/
22+
23+
# Avoid temp and backup files.
24+
~$
25+
\.old$
26+
\#$
27+
\b\.#
28+
\.bak$
29+
30+
# Avoid Devel::Cover files.
31+
\bcover_db\b
32+
33+
### DEFAULT MANIFEST.SKIP ENDS HERE ####
34+
35+
\.DS_Store$
36+
\.sw.$
37+
(\w+-)*(\w+)-\d\.\d+(?:\.tar\.gz)?$
38+
39+
\.t\.log$
40+
41+
\.prove$
42+
43+
# XS shit
44+
\.(?:bs|c|o)$

Makefile.PL

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#!/usr/bin/perl -w
2+
3+
use strict;
4+
5+
use ExtUtils::MakeMaker;
6+
7+
WriteMakefile(
8+
NAME => 'KiokuX::Model',
9+
VERSION_FROM => 'lib/KiokuX/Model.pm',
10+
INSTALLDIRS => 'site',
11+
SIGN => 1,
12+
PL_FILES => { },
13+
PREREQ_PM => {
14+
'KiokuDB' => 0.24,
15+
},
16+
);

lib/KiokuX/Model.pm

+19-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ use KiokuDB;
77

88
use namespace::clean -except => 'meta';
99

10+
our $VERSION = "0.01";
11+
1012
sub BUILD {
1113
my $self = shift;
1214

@@ -154,6 +156,21 @@ L<KiokuDB/typemap>.
154156
155157
=head1 SEE ALSO
156158
157-
L<Catalyst::Model::KiokuDB>
159+
L<KiokuDB>, L<Catalyst::Model::KiokuDB>
160+
161+
=head1 VERSION CONTROL
162+
163+
KiokuDB is maintained using Git. Information about the repository is available
164+
on L<http://www.iinteractive.com/kiokudb/>
165+
166+
=head1 AUTHOR
167+
168+
Yuval Kogman E<lt>[email protected]E<gt>
169+
170+
=head1 COPYRIGHT
171+
172+
Copyright (c) 2009 Yuval Kogman, Infinity Interactive. All
173+
rights reserved This program is free software; you can redistribute
174+
it and/or modify it under the same terms as Perl itself.
158175
159-
=cut
176+
=

0 commit comments

Comments
 (0)