mkalias 0.1.6 → 0.1.7
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.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/bin/mkalias +2 -1
- data/lib/mkalias/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dd47bd35f7cb160d4a209838e9a0384ea081b42b
|
|
4
|
+
data.tar.gz: ad7ce8f2afec654354550b80437a8c715386fa33
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 57a71e1af1262c429768fa950e721ef47a8ad6fb0380208a2934885a49a277f3613a9a491bd6fae408741ebbcafaad49d98ce51d0709bb41cb607841f0a49cfe
|
|
7
|
+
data.tar.gz: eafc43c7abc1dbf76afed820ae5acdabbd6d0bb2a24319f89e09dd5f57289da9196078f4713546d7a51344f5e4205e3aac46b6b8a57cce58fc18fe4a8af1a134
|
data/README.md
CHANGED
|
@@ -22,7 +22,7 @@ Or install it yourself as:
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
24
24
|
run: $ mkalias [option]
|
|
25
|
-
option: new -> mkalias new [alias] [command]
|
|
25
|
+
option: new -> mkalias new [alias] [command] [command 2]...[command n]
|
|
26
26
|
option: list -> mkalias list
|
|
27
27
|
option: show -> mkalias show [alias]
|
|
28
28
|
option: remove -> mkalias remove [alias]
|
data/bin/mkalias
CHANGED
|
@@ -7,7 +7,8 @@ VALID_OPTIONS = ['new', 'list', 'show', 'remove']
|
|
|
7
7
|
|
|
8
8
|
def usage
|
|
9
9
|
puts "Usage: mkalias [option]"
|
|
10
|
-
puts "option: new \t -> mkalias new [alias] [command]"
|
|
10
|
+
puts "option: new \t -> mkalias new [alias] [command 1] [command 2] ..." \
|
|
11
|
+
" [command n]"
|
|
11
12
|
puts "option: list \t -> mkalias list"
|
|
12
13
|
puts "option: show \t -> mkalias show [alias]"
|
|
13
14
|
puts "option: remove \t -> mkalias remove [alias]"
|
data/lib/mkalias/version.rb
CHANGED