wdim 0.1.0 → 0.1.1
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 +3 -1
- data/config/dictionary.yml +18 -0
- data/lib/wdim/version.rb +1 -1
- metadata +2 -3
- data/dictionary/dictionary.yml +0 -22
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 866534068a59b0bd225e2795dd5f129577094df4
|
|
4
|
+
data.tar.gz: bc66685dbf774ae872c5d7eef8e3d884bd122019
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e4b47da97f49de328466077bfa9a599eabd30bec5cba28cbf8f92d1748617e43bd0199f931836d7940d5cfddfda8e92fcd2181890ecba832ac997d8516e9aff1
|
|
7
|
+
data.tar.gz: ef2af4cef3486f24e1638e63aa4c7e5c5eec149cd5c3c99acf23fa080f3a92bdc853316820fd7e2dc6338f70ea12041691602458d806c11709b41b16bc5ebf02
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# Wdim
|
|
2
2
|
|
|
3
|
+
Wdim is a command line tool to get what the commands mean.
|
|
4
|
+
|
|
3
5
|
## Installation
|
|
4
6
|
|
|
5
7
|
Add this line to your application's Gemfile:
|
|
@@ -17,7 +19,7 @@ Or install it yourself as:
|
|
|
17
19
|
$ gem install wdim
|
|
18
20
|
|
|
19
21
|
## Usage
|
|
20
|
-
Type a command as an arg, get what
|
|
22
|
+
Type a command as an arg, get what the command mean.
|
|
21
23
|
|
|
22
24
|

|
|
23
25
|
|
data/config/dictionary.yml
CHANGED
|
@@ -5,11 +5,29 @@ wdim:
|
|
|
5
5
|
what does it mean
|
|
6
6
|
man:
|
|
7
7
|
manual pages
|
|
8
|
+
mkdir:
|
|
9
|
+
make directory
|
|
8
10
|
pwd:
|
|
9
11
|
print working directory
|
|
12
|
+
cat:
|
|
13
|
+
catenate
|
|
10
14
|
cd:
|
|
11
15
|
change directory
|
|
16
|
+
chmod:
|
|
17
|
+
change mode
|
|
12
18
|
vim:
|
|
13
19
|
vi improved
|
|
14
20
|
ls:
|
|
15
21
|
list segments
|
|
22
|
+
tar:
|
|
23
|
+
tape archives
|
|
24
|
+
curl:
|
|
25
|
+
client for urls
|
|
26
|
+
grep:
|
|
27
|
+
global regular expressions print
|
|
28
|
+
sed:
|
|
29
|
+
stream editor
|
|
30
|
+
ln:
|
|
31
|
+
link
|
|
32
|
+
bash:
|
|
33
|
+
bourne-again shell
|
data/lib/wdim/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wdim
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- gaaamii
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-05-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -90,7 +90,6 @@ files:
|
|
|
90
90
|
- bin/rspec
|
|
91
91
|
- bin/setup
|
|
92
92
|
- config/dictionary.yml
|
|
93
|
-
- dictionary/dictionary.yml
|
|
94
93
|
- exe/wdim
|
|
95
94
|
- lib/wdim.rb
|
|
96
95
|
- lib/wdim/cli.rb
|
data/dictionary/dictionary.yml
DELETED
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
# THIS DICTIONARY HAS ONLY ACRONYMS or SPECIAL JARGONS.
|
|
2
|
-
# Therefore commands like "history", "touch", or "top" will not be included here.
|
|
3
|
-
|
|
4
|
-
dictionary:
|
|
5
|
-
wdim:
|
|
6
|
-
what does it mean
|
|
7
|
-
man:
|
|
8
|
-
manual pages
|
|
9
|
-
mkdir:
|
|
10
|
-
make directory
|
|
11
|
-
pwd:
|
|
12
|
-
print working directory
|
|
13
|
-
cat:
|
|
14
|
-
catenate
|
|
15
|
-
cd:
|
|
16
|
-
change directory
|
|
17
|
-
chmod:
|
|
18
|
-
change mode
|
|
19
|
-
vim:
|
|
20
|
-
vi improved
|
|
21
|
-
ls:
|
|
22
|
-
list segments
|