| commit | 766317c13a7900c68487298ffbc678f6c43148c1 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <devoncarew@gmail.com> | Sun Apr 05 15:09:30 2015 -0700 |
| committer | Devon Carew <devoncarew@gmail.com> | Sun Apr 05 15:09:30 2015 -0700 |
| tree | 3c618f544d6a0457bc44e349d73cb9e5124b66c6 | |
| parent | 65b179fa8e7ba70e2e9562d7cecf79af871847d3 [diff] |
ready for first publish
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.