| commit | 249ae94cd34680e123a1840af9a4e13131df4708 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Thu Nov 22 19:10:58 2018 |
| committer | Devon Carew <[email protected]> | Thu Nov 22 19:10:58 2018 |
| tree | df0ce517e25bad47106651997e5ac8100c8cb093 | |
| parent | cb87de42643be8e96c7b23508f3204da943f8626 [diff] |
fix the travis build
A library to reflect on the local pub cache.
pub_cache lets you reflect on the information in your Pub cache. For example, to find all the applications that have been activated:
PubCache cache = new PubCache(); for (Application app in cache.getGlobalApplications()) { print('activated app: ${app.name}, version: ${app.version}'); }
Some other interesting use cases:
Please file feature requests and bugs at the issue tracker.