Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Unified Diff: pkg/fletchc/lib/src/verbs/README.md

Issue 1659163007: Rename fletch -> dartino (Closed) Base URL: https://github.com/dartino/sdk.git@master
Patch Set: address comments Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/fletchc/lib/src/shared_command_infrastructure.dart ('k') | pkg/fletchc/lib/src/verbs/actions.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/fletchc/lib/src/verbs/README.md
diff --git a/pkg/fletchc/lib/src/verbs/README.md b/pkg/fletchc/lib/src/verbs/README.md
deleted file mode 100644
index ed2b8232333d228a853757fec34785c7cf30fd49..0000000000000000000000000000000000000000
--- a/pkg/fletchc/lib/src/verbs/README.md
+++ /dev/null
@@ -1,58 +0,0 @@
-<!---
-Copyright (c) 2015, the Dartino project authors. Please see the AUTHORS file
-for details. All rights reserved. Use of this source code is governed by a
-BSD-style license that can be found in the LICENSE.md file.
--->
-
-# Design for Fletch Command Line Interface commands
-
-The overall structure of commands in Fletch should follow:
-
-```
-fletch verb [zero or more verbs or object-nouns]
-```
-
-The outermost verb is the group of actions to be performed
-(for example, 'help'). Subsequent verbs are either 'sub-verbs'
-(for example, 'debug step') or are the target of the outer verbs
-(for example 'help debug').
-
-Object-nouns are the target of the command (for example, 'fletch show changes')
-
-The overall aim here is to provide the ability to 'vocalise' the instructions,
-in other words to say them to yourself as you type them.
-
-## Some examples
-
-```
-fletch debug step
-```
-
-should perform the next step of execution.
-
-```
-fletch help
-```
-
-should provide 'top level' help, whereas:
-
-```
-fletch help debug
-```
-should provide help about debug.
-
-
-## Exceptions
-
-Help should be supported everywhere as a top level verb and a sub-verb,
-in other words:
-
-```
-fletch help debug
-```
- and
-```
-fletch debug help
-```
-
-Should display the same text.
« no previous file with comments | « pkg/fletchc/lib/src/shared_command_infrastructure.dart ('k') | pkg/fletchc/lib/src/verbs/actions.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698