Skip to content

Commit fbb34ca

Browse files
committed
Skeleton
0 parents  commit fbb34ca

File tree

5 files changed

+123
-0
lines changed

5 files changed

+123
-0
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
*~
2+
*.bak
3+
.DS_Store
4+
.build/
5+
6+
blib*
7+
Makefile
8+
Makefile.old
9+
META.yml
10+
Build
11+
_build*
12+
pm_to_blib*
13+
.lwpcookies
14+
cover_db
15+
16+
/PowerDNS-API-Client*
17+

Changes

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Revision history for PowerDNS-API-Client
2+
3+
{{$NEXT}}
4+
- First release

MANIFEST.SKIP

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
\bRCS\b
2+
\bCVS\b
3+
\.svn/
4+
\.git/
5+
^Makefile$
6+
~$
7+
\.old$
8+
^blib/
9+
^pm_to_blib
10+
^MakeMaker-\d
11+
\.gz$
12+
\.cvsignore
13+

dist.ini

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name = PowerDNS-API-Client
2+
author = Ask Bjørn Hansen <[email protected]>
3+
license = Perl_5
4+
copyright_holder = Ask Bjørn Hansen
5+
copyright_year = 2011
6+
7+
[Prereqs]
8+
9+
[Prereqs / TestRequires ]
10+
Test::More = 0
11+
12+
[@Git]
13+
# push_to = all
14+
15+
[@Filter]
16+
bundle = @Basic
17+
18+
[MetaResources]
19+
bugtracker.web = http://github.com/abh/PowerDNS-API-Client/issues
20+
21+
[MetaJSON]
22+
23+
[Repository]
24+
[Homepage]
25+
[BumpVersionFromGit]
26+
[PkgVersion]
27+
[Signature]
28+
[CheckChangeLog]
29+
[CompileTests]
30+
[DistManifestTests]
31+
[HasVersionTests]
32+
[MetaTests]
33+
[NoTabsTests]
34+
[EOLTests]
35+
36+
[NextRelease]
37+
format = %-5v %{MMMM d, yyyy}d
38+

lib/PowerDNS/API/Client.pm

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
package PowerDNS::API::Client;
2+
use strict;
3+
use warnings;
4+
5+
1;
6+
7+
__END__
8+
9+
=pod
10+
11+
=head1 NAME
12+
13+
PowerDNS::API::Client -
14+
15+
=head1 SYNOPSIS
16+
17+
18+
=head1 DESCRIPTION
19+
20+
=head1 METHODS
21+
22+
=over4
23+
24+
=item ...
25+
26+
=back
27+
28+
=head1 AUTHOR
29+
30+
Ask Bjørn Hansen, C<< <ask at develooper.com> >>
31+
32+
=head1 BUGS
33+
34+
Please report any bugs or feature requests to the issue tracker at
35+
L<http://github.com/abh/PowerDNS-API-Client/issues>.
36+
37+
The Git repository is available at
38+
L<http://github.com/abh/PowerDNS-API-Client>
39+
40+
41+
=head1 COPYRIGHT & LICENSE
42+
43+
Copyright 2011 Ask Bjørn Hansen, all rights reserved.
44+
45+
This program is free software; you can redistribute it and/or modify it
46+
under the same terms as Perl itself.
47+
48+
=cut
49+
50+
51+
=cut

0 commit comments

Comments
 (0)