NAME

GitHub::Jobs - interface to the GitHub Jobs API.

VERSION

Version 0.01

SYNOPSIS

This module is the implementation of a interface to the GitHub Jobs API (as available on https://jobs.github.com/api)

use strict;
use warnings;

use GitHub::Jobs;
use Data::Dumper;
use JSON::XS;

my $q ='perl';
my $str = GitHub::Jobs->new(description=>$q);
my $get_v = $str->search();

my $decoded = JSON::XS::decode_json($get_v);
foreach my $items(@ {$decoded})
{
        print $items-> {title} . "----";
        print $items-> {company} . "\n";
}

AUTHOR

Ovidiu Nita Tatar, <ovn.tatar at gmail.com>

BUGS

Please report any bugs or feature requests to bug-github-jobs at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=GitHub-Jobs. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

You can find documentation for this module with the perldoc command.

perldoc GitHub::Jobs

You can also look for information at:

ACKNOWLEDGEMENTS

LICENSE AND COPYRIGHT

Copyright 2013 Ovidiu Nita Tatar.

This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License.

See http://dev.perl.org/licenses/ for more information.