Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Newly minted distribution
  • Loading branch information
abh committed Sep 16, 2010
0 parents commit 1410f02
Show file tree
Hide file tree
Showing 5 changed files with 123 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .gitignore
@@ -0,0 +1,17 @@
*~
*.bak
.DS_Store
.build/

blib*
Makefile
Makefile.old
META.yml
Build
_build*
pm_to_blib*
.lwpcookies
cover_db

/Config-Origami*

4 changes: 4 additions & 0 deletions Changes
@@ -0,0 +1,4 @@
Revision history for Config-Origami

{{$NEXT}}
- First release
13 changes: 13 additions & 0 deletions MANIFEST.SKIP
@@ -0,0 +1,13 @@
\bRCS\b
\bCVS\b
\.svn/
\.git/
^Makefile$
~$
\.old$
^blib/
^pm_to_blib
^MakeMaker-\d
\.gz$
\.cvsignore

38 changes: 38 additions & 0 deletions dist.ini
@@ -0,0 +1,38 @@
name = Config-Origami
author = Ask Bjørn Hansen <ask@develooper.com>
license = Perl_5
copyright_holder = Ask Bjørn Hansen
copyright_year = 2010

[Prereq]

[Prereqs / TestRequires ]
Test::More = 0

[@Git]
# push_to = all

[@Filter]
bundle = @Basic

[MetaResources]
bugtracker.web = http://github.com/abh/Config-Origami/issues

[MetaJSON]

[Repository]
[Homepage]
[BumpVersionFromGit]
[PkgVersion]
[Signature]
[CheckChangeLog]
[CompileTests]
[DistManifestTests]
[HasVersionTests]
[MetaTests]
[NoTabsTests]
[EOLTests]

[NextRelease]
format = %-5v %{MMMM d, yyyy}d

51 changes: 51 additions & 0 deletions lib/Config/Origami.pm
@@ -0,0 +1,51 @@
package Config::Origami;
use strict;
use warnings;

1;

__END__
=pod
=head1 NAME
Config::Origami - Layered JSON configuration
=head1 SYNOPSIS
=head1 DESCRIPTION
=head1 METHODS
=over4
=item ...
=back
=head1 AUTHOR
Ask Bjørn Hansen, C<< <ask at develooper.com> >>
=head1 BUGS
Please report any bugs or feature requests to the issue tracker at
L<http://github.com/abh/Config-Origami/issues>.
The Git repository is available at
L<http://github.com/abh/Config-Origami>
=head1 COPYRIGHT & LICENSE
Copyright 2010 Ask Bjørn Hansen, all rights reserved.
This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
=cut
=cut

0 comments on commit 1410f02

Please sign in to comment.