| commit | 2ec989a053160f565cd481c95674b02b17cbcae4 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Fri Feb 26 00:38:16 2021 |
| committer | Devon Carew <[email protected]> | Fri Feb 26 00:38:16 2021 |
| 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.