| commit | 57742e6327d58eb3b5537e8a14028055a8421507 | [log] [tgz] |
|---|---|---|
| author | Devon Carew <[email protected]> | Tue Jul 11 03:22:02 2017 |
| committer | Devon Carew <[email protected]> | Tue Jul 11 03:22:02 2017 |
| tree | 5e020349688c934b724a7c43b5cc2ceb3c8c1ebf | |
| parent | 567f6008bd53a7fd6ea17f9cacc3cb268bfaa6f6 [diff] |
analysis_options.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.