The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Badge::Depot::Plugin::Travis - Travis plugin for Badge::Depot

Requires Perl 5.10+ Travis status Distribution kwalitee CPAN Testers result coverage 67.3%

VERSION

Version 0.0203, released 2016-04-09.

SYNOPSIS

    use Badge::Depot::Plugin::Travis;

    my $badge = Badge::Depot::Plugin::Travis->new(user => 'my_name', repo => 'the_repo', branch => 'master');

    print $badge->to_html;
    # prints '<a href="https://travis-ci.org/my_name/my_repo"><img src="https://api.travis-ci.org/my_name/my_repo.svg?branch=master" /></a>'

DESCRIPTION

Create a Travis badge for a github repository.

This class consumes the Badge::Depot role.

ATTRIBUTES

The user and repo attributes are required or optional, depending on your configuration. It looks for the resources/repository/web setting in META.json:

  • If META.json doesn't exist in the dist root, user and repo are required.

  • If resources/repository/web doesn't exist (or is not a github url), user and repo are required.

user

Github username.

repo

Github repository.

branch

Github branch. Optional, master by default.

SEE ALSO

SOURCE

https://github.com/Csson/p5-Badge-Depot-Plugin-Travis

HOMEPAGE

https://metacpan.org/release/Badge-Depot-Plugin-Travis

AUTHOR

Erik Carlsson <info@code301.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2016 by Erik Carlsson.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.