[![Build Status](https://travis-ci.org/JJ/p6-river.svg?branch=master)](https://travis-ci.org/JJ/p6-river) NAME ==== Perl6::Ecosystem - Obtains information from Perl6 modules in the ecosystem SYNOPSIS ======== use Perl::Ecosystem; my $eco = Perl6::Ecosystem.new; say $eco.modules; say $eco.depended; say $eco.depends-on; DESCRIPTION =========== METHODS ======= method new( ) ------------- Creates the object, downloading and filling it with information. Error output goes to `/tmp/perl6-eco-err.txt` method modules -------------- Returns a `hash` with module names, dependencies and URLs. method depended --------------- Returns a `hash` with module names and the number of other modules it depends on. method depends-on ----------------- Returns a `hash` with module names and its dependencies. SEE ALSO ======== [Perl6 module ecosystem](https://modules.perl6.org). AUTHOR ====== Alex Daniel, JJ Merelo COPYRIGHT AND LICENSE ===================== Copyright 2018 Alex Daniel, JJ Merelo This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.