NAME

    WebService::Pokemon - A module to access the Pokémon data through
    RESTful API from http://pokeapi.co.

SYNOPSIS

        use WebService::Pokemon;
    
        my $pokemon_api = WebService::Pokemon->new;
        my $pokemon = $pokemon_api->pokemon(id => 1);

DESCRIPTION

    WebService::Pokemon is a Perl client helper library for the Pokemon API
    (pokeapi.co).

DEVELOPMENT

    Source repo at https://github.com/kianmeng/webservice-pokemon.

 Docker

    If you have Docker installed, you can build your Docker container for
    this project.

        $ docker build -t webservice-pokemon .
        $ docker run -it -v $(pwd):/root webservice-pokemon bash
        # cpanm --installdeps --notest .

 Milla

    Setting up the required packages.

        $ milla authordeps --missing | cpanm
        $ milla listdeps --missing | cpanm

    Check you code coverage.

        $ milla cover

    Several ways to run the test.

        $ milla test
        $ milla test --author --release
        $ AUTHOR_TESTING=1 RELEASE_TESTING=1 milla test
        $ AUTHOR_TESTING=1 RELEASE_TESTING=1 milla run prove t/01_instantiation.t

    Release the module.

        $ milla build
        $ milla release

METHODS

 new([%$args])

    Construct a new WebService::Pokemon instance. Optionally takes a hash
    or hash reference.

        # Instantiate the class.
        my $pokemon_api = WebService::Pokemon->new;

  api_url

    The URL of the API resource.

        # Instantiate the class by setting the URL of the API endpoints.
        my $pokemon_api = WebService::Pokemon->new({api_url => 'http://example.com/api/v2'});
    
        # Or after the object was created.
        my $pokemon_api = WebService::Pokemon->new;
        $pokemon_api->api_url('http://example.com/api/v2');

 resource

    Get the details of a particular resource either by id or name.

        # Get paginated list of available berry resource.
        my $berry = $pokemon_api->resource('berry');
    
        # Get by id.
        my $berry_firmness = $pokemon_api->resource('berry-firmnesses', 1);
    
        # Get by name.
        my $berry_firmness = $pokemon_api->resource('berry-firmnesses', 'very-soft');

COPYRIGHT AND LICENSE

    This software is Copyright (c) 2018 by Kian Meng, Ang.

    This is free software, licensed under:

        The Artistic License 2.0 (GPL Compatible)

AUTHOR

    Kian Meng, Ang <kianmeng@users.noreply.github.com>