| commit | 567f6008bd53a7fd6ea17f9cacc3cb268bfaa6f6 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Fri Jul 10 19:52:34 2015 |
| committer | Devon Carew <[email protected]> | Fri Jul 10 19:52:34 2015 |
| tree | bcef86bbee01d2039f70f0100a51c3789d27e43b | |
| parent | 7969e1a9550a98f100e81a385fa1065b49cd331f [diff] |
Update pubspec.yaml
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.