mkalias 0.1.4 → 0.1.5
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 +8 -15
- data/lib/mkalias/version.rb +1 -1
- data/mkalias.gemspec +5 -3
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3332ca74918b35a6d27d7ef173150bd05f9b7d74
|
|
4
|
+
data.tar.gz: 3aa9ca2fa013850e75d112c8e697409b590623f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2798b52d53e86d351e6049686df0985b461743de559f5dbd02e12f989f8f3f2f1f984be8cacd84940a472a27a4c0dc82287366e39029f017d400d26b04fe30d
|
|
7
|
+
data.tar.gz: eed568799152b9b4ee352713f09e502903e8f008b7cf678921341438502e7f93cdfeacba0677f9edd8c6700ba65ebfa84f7d9a4a11f18dc0b5868939b7971718
|
data/README.md
CHANGED
|
@@ -21,21 +21,14 @@ Or install it yourself as:
|
|
|
21
21
|
|
|
22
22
|
## Usage
|
|
23
23
|
|
|
24
|
-
run: $ mkalias [option]
|
|
25
|
-
|
|
26
|
-
option:
|
|
27
|
-
|
|
28
|
-
option:
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
option: remove -> mkalias remove [alias]
|
|
33
|
-
|
|
34
|
-
Attention: To make alias with args use #. Example:
|
|
35
|
-
|
|
36
|
-
$ mkalias new [alias] "echo #1 #2 #3"
|
|
37
|
-
|
|
38
|
-
Then you can use: $ [alias] arg1 arg2 arg3
|
|
24
|
+
run: $ mkalias [option]
|
|
25
|
+
option: new -> mkalias new [alias] [command]
|
|
26
|
+
option: list -> mkalias list
|
|
27
|
+
option: show -> mkalias show [alias]
|
|
28
|
+
option: remove -> mkalias remove [alias]
|
|
29
|
+
Attention: To make alias with args use #. Example:
|
|
30
|
+
$ mkalias new [alias] "echo #1 #2 #3"
|
|
31
|
+
Then you can use: $ [alias] arg1 arg2 arg3
|
|
39
32
|
|
|
40
33
|
|
|
41
34
|
## Development
|
data/lib/mkalias/version.rb
CHANGED
data/mkalias.gemspec
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# coding: utf-8
|
|
1
|
+
# coding: utf-8
|
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
require 'mkalias/version'
|
|
@@ -9,8 +9,10 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ['Luciano Prestes Cavalcanti']
|
|
10
10
|
spec.email = ['lucianopcbr@gmail.com']
|
|
11
11
|
|
|
12
|
-
spec.summary =
|
|
13
|
-
spec.description =
|
|
12
|
+
spec.summary = 'A program to create bash alias'
|
|
13
|
+
spec.description = 'MKalias is a alias manage, when you can just add' \
|
|
14
|
+
' a command and you can add a new alias, list the' \
|
|
15
|
+
' alias, show the alias command or remove the alias.'
|
|
14
16
|
spec.homepage = 'https://github.com/LucianoPC/mkalias'
|
|
15
17
|
spec.license = 'GPL-3.0'
|
|
16
18
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mkalias
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Luciano Prestes Cavalcanti
|
|
@@ -52,7 +52,8 @@ dependencies:
|
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
54
|
version: '3.0'
|
|
55
|
-
description:
|
|
55
|
+
description: MKalias is a alias manage, when you can just add a command and you can
|
|
56
|
+
add a new alias, list the alias, show the alias command or remove the alias.
|
|
56
57
|
email:
|
|
57
58
|
- lucianopcbr@gmail.com
|
|
58
59
|
executables:
|
|
@@ -97,5 +98,5 @@ rubyforge_project:
|
|
|
97
98
|
rubygems_version: 2.5.1
|
|
98
99
|
signing_key:
|
|
99
100
|
specification_version: 4
|
|
100
|
-
summary:
|
|
101
|
+
summary: A program to create bash alias
|
|
101
102
|
test_files: []
|