Skip to content

Commit

Permalink
Real first commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
LoonyPandora committed Nov 24, 2011
1 parent aec5809 commit a88c5ce
Show file tree
Hide file tree
Showing 7 changed files with 107 additions and 0 deletions.
15 changes: 15 additions & 0 deletions CHANGES
@@ -0,0 +1,15 @@


0.1.0 2011-11-27

** First Public Release **

[ DOCUMENTATION ]
* Added Documentation

[ TESTS ]
* Added Test Suite

0.0.1 2011-11-24

** First Draft **
File renamed without changes.
12 changes: 12 additions & 0 deletions demo.pl
@@ -0,0 +1,12 @@
#!/usr/bin/env perl

use common::sense;
use lib 'lib';
use URL::Shorten;
use URL::Shorten::GitHub;






31 changes: 31 additions & 0 deletions dist.ini
@@ -0,0 +1,31 @@
name = URL-Shorten
author = James Aitken <jaitken@cpan.org>
license = Perl_5
copyright_holder = James Aitken
copyright_year = 2011

version = 0.0.1

[AutoPrereqs]

[MinimumPerl]

[ReadmeAnyFromPod]
type = markdown
filename = README
location = build

[PruneFiles]
filenames = dist.ini
filenames = README.markdown

[MetaResources]
bugtracker.web = https://github.com/LoonyPandora/URL-Shorten/issues
repository.web = https://github.com/LoonyPandora/URL-Shorten
repository.url = git://github.com/LoonyPandora/URL-Shorten.git
repository.type = git

[@Filter]
-bundle = @Basic
-remove = Readme

9 changes: 9 additions & 0 deletions lib/URL/Shorten.pm
@@ -0,0 +1,9 @@
package URL::Shorten;

# ABSTRACT: Shorten URLs using many URL shorteners

use strict;
use warnings;

1;

34 changes: 34 additions & 0 deletions lib/URL/Shorten/GitHub.pm
@@ -0,0 +1,34 @@
package URL::Shorten::GitHub;

# ABSTRACT: Shorten GitHub URLs using GitHub's URL shortener - git.io

use strict;
use warnings;




1;

=head1 CAVEATS
Git.io only shortens URLs on github.com and its subdomains.
It is not a general purpose URL shortener.
=head1 SEE ALSO
L<WWW::Shorten>, L<http://git.io/help>
=head1 AUTHOR
James Aitken <jaitken@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2011 by James Aitken.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
6 changes: 6 additions & 0 deletions t/001_basics.t
@@ -0,0 +1,6 @@
use Test::More tests => 1;

use strict;
use warnings;

use_ok 'URL::Shorten';

0 comments on commit a88c5ce

Please sign in to comment.