commit | cb87de42643be8e96c7b23508f3204da943f8626 | [log] [tgz] |
---|---|---|
author | Devon Carew <devoncarew@google.com> | Thu Sep 27 14:43:11 2018 |
committer | GitHub <noreply@github.com> | Thu Sep 27 14:43:11 2018 |
tree | 661d97cc1bb5dd734d48fba5cdd0a410dc4c67af | |
parent | 8b470c49bdaaa4063d18c336e7ae9c38758513fa [diff] | |
parent | 438ea0d4624793edf149dc19b58f10e66fc49d0a [diff] |
Merge pull request #35 from joeconwaystk/master Use PUB_HOSTED_URL if set
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.