gem-alias 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.md +5 -4
- data/lib/gem-alias/version.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
|
@@ -17,12 +17,12 @@ Example:
|
|
|
17
17
|
:aliases:
|
|
18
18
|
upgrade = update
|
|
19
19
|
ls = list
|
|
20
|
-
|
|
20
|
+
search = search --remote
|
|
21
21
|
|
|
22
22
|
Now you can use them!
|
|
23
23
|
|
|
24
|
-
$ gem
|
|
25
|
-
*** expanding
|
|
24
|
+
$ gem search rake
|
|
25
|
+
*** expanding search rake to search --remote rake
|
|
26
26
|
|
|
27
27
|
*** REMOTE GEMS ***
|
|
28
28
|
<snip>
|
|
@@ -32,7 +32,7 @@ Verbose expansion message above can be suppressed with the `:verbose` configurat
|
|
|
32
32
|
You can list the definitions by `gem aliases`:
|
|
33
33
|
|
|
34
34
|
ls = list
|
|
35
|
-
|
|
35
|
+
search = search --remote
|
|
36
36
|
upgrade = update
|
|
37
37
|
|
|
38
38
|
Note that this list is sorted.
|
|
@@ -48,3 +48,4 @@ Note that this list is sorted.
|
|
|
48
48
|
## ToDo
|
|
49
49
|
|
|
50
50
|
* Like normal commands, aliases should also be looked up with shorter, but unambiguous names.
|
|
51
|
+
* Support multi-level expanstion without falling into infinite loop.
|
data/lib/gem-alias/version.rb
CHANGED