| Index: pkg/args/lib/args.dart
|
| diff --git a/pkg/args/lib/args.dart b/pkg/args/lib/args.dart
|
| index 1337b46a6a8f40ac92b72a14c175eee7e8c867bb..be1a6efa4d819550aee0c9a8819d7c361ac5c2a3 100644
|
| --- a/pkg/args/lib/args.dart
|
| +++ b/pkg/args/lib/args.dart
|
| @@ -6,6 +6,19 @@
|
| * This library lets you define parsers for parsing raw command-line arguments
|
| * into a set of options and values using [GNU][] and [POSIX][] style options.
|
| *
|
| + * ## Installing ##
|
| + *
|
| + * Use [pub][] to install this package. Add the following to your `pubspec.yaml`
|
| + * file.
|
| + *
|
| + * dependencies:
|
| + * args: any
|
| + *
|
| + * Then run `pub install`.
|
| + *
|
| + * For more information, see the
|
| + * [args package on pub.dartlang.org](http://pub.dartlang.org/packages/args).
|
| + *
|
| * ## Defining options ##
|
| *
|
| * To use this library, you create an [ArgParser] object which will contain
|
| @@ -209,6 +222,7 @@
|
| *
|
| * [posix]: http://pubs.opengroup.org/onlinepubs/009695399/basedefs/xbd_chap12.html#tag_12_02
|
| * [gnu]: http://www.gnu.org/prep/standards/standards.html#Command_002dLine-Interfaces
|
| + * [pub]: http://pub.dartlang.org
|
| */
|
| library args;
|
|
|
|
|