summaryrefslogtreecommitdiff
path: root/eg/github.pl
diff options
context:
space:
mode:
Diffstat (limited to 'eg/github.pl')
-rw-r--r--eg/github.pl43
1 files changed, 43 insertions, 0 deletions
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";