commit | 2ec989a053160f565cd481c95674b02b17cbcae4 | [log] [tgz] |
---|---|---|
author | Devon Carew <devoncarew@google.com> | Thu Feb 25 16:38:16 2021 -0800 |
committer | Devon Carew <devoncarew@google.com> | Thu Feb 25 16:38:16 2021 -0800 |
tree | 0cbb5070286bcd31b79eb0a038197f7443e0a2ae | |
parent | f0463c88027184ed7000b66418325f7779e7fc29 [diff] |
fix tests
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.