From 164f7f5b484f5236407904acf27de4a055503022 Mon Sep 17 00:00:00 2001 From: franck cuny Date: Mon, 13 Sep 2010 16:14:34 +0200 Subject: some POD and examples --- eg/github.pl | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 eg/github.pl (limited to 'eg/github.pl') diff --git a/eg/github.pl b/eg/github.pl new file mode 100644 index 0000000..4053d67 --- /dev/null +++ b/eg/github.pl @@ -0,0 +1,43 @@ +use strict; +use warnings; + +use Net::HTTP::Spore; +use Getopt::Long; + +use Config::GitLike::Git; +use Git::Repository; + +GetOptions( + 'spec=s' => \my $specification, + 'name=s' => \my $name, + 'desc=s' => \my $desc, +); + +print ">> creating repository $name on github\n"; + +my $c = Config::GitLike::Git->new(); +$c->load; + +my $login = $c->get(key => 'github.user'); +my $token = $c->get(key => 'github.token'); + +my $github = Net::HTTP::Spore->new_from_spec($specification); +$github->enable('Format::JSON'); +$github->enable( + 'Auth::Basic', + username => $login . '/token', + password => $token, +); + +my $remote = "git\@github.com:" . $login . "/" . $name . ".git"; + +my $res = $github->create_repo(format => 'json', payload => {name => $name, description => $desc}); + +print ">> repository $remote created\n"; + +my $r = Git::Repository->create(init => $name); +my @cmd = ('remote', 'add', 'origin', $remote); +$r->run(@cmd); + +print ">> repository cloned to $name\n"; +print ">> done!\n"; -- cgit v1.2.3