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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d0fb077ce6f9f1713bd3b593403de9dceafc332b
4
- data.tar.gz: ce05a260ab77ee40f3c18cbdeb195309c3afa286
3
+ metadata.gz: 3332ca74918b35a6d27d7ef173150bd05f9b7d74
4
+ data.tar.gz: 3aa9ca2fa013850e75d112c8e697409b590623f6
5
5
  SHA512:
6
- metadata.gz: 5e8ba4b1dcdd6b23308de0d4059425f3ea7f64068a953855ff32ace7dbe56fc39334b8ed9a1d548491d9296237ace445413af86d9a5864db17419e6fc8f385dc
7
- data.tar.gz: 10ea6f83030cb784cf60fb374acc7b9840752e4565da4a690c9761a18b34ce8723fb48e9cbe4a13fb5551860c112502406f659b7b142a379e191fc1c4cce7293
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: new -> mkalias new [alias] [command]
27
-
28
- option: list -> mkalias list
29
-
30
- option: show -> mkalias show [alias]
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
@@ -1,3 +1,3 @@
1
1
  module Mkalias
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
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 = %q{An make alias}
13
- spec.description = %q{Make alias on yours command line}
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
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: Make alias on yours command line
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: An make alias
101
+ summary: A program to create bash alias
101
102
  test_files: []