| commit | 65f3df2c1bfb6f66d94776c3ee6d9a99415ae8c7 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Fri May 14 15:42:41 2021 |
| committer | Devon Carew <[email protected]> | Fri May 14 15:42:41 2021 |
| tree | 99d08fb2c3c480e88a8df10df7c7a55d9869643b | |
| parent | 11c82134ecb639618aa1d8ac0eb9795861f9eba0 [diff] |
rev to 0.3.1 in preparation for publishing
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.