cani 0.4.0 → 0.4.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/.gitignore +1 -0
- data/README.md +9 -0
- data/lib/cani/version.rb +1 -1
- metadata +2 -3
- data/Gemfile.lock +0 -47
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 76133edfe3fbbd09fbab2328f52ce8f3e90fd56af8991764900d0a7b05c5c738
|
4
|
+
data.tar.gz: 735dcc7e1a6ef0dd05d0ab591588691922c777b704b3d09bb4d63dd0fa861045
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37003678fd7735a27edfaa096809853355aa518ae2694beca61e3292b2722cc7cd87f2fd94331e6b1cac22f10a8e7aa400b24cac136dbe9120cdadf324f6d966
|
7
|
+
data.tar.gz: f3d7841d99e3d221e495f852bf383f1c560468d07cfc5f0531cef3594b6ee47a817c11c8661d5d5f3331d4491e1e762dda758b8f89e7cc0f43dfd38f680f62ec
|
data/.gitignore
CHANGED
data/README.md
CHANGED
@@ -59,6 +59,7 @@ Cani supports the following actions:
|
|
59
59
|
- [`update`](#update) - force update data and completions
|
60
60
|
- [`install_completions`](#install_completions) - install shell completions
|
61
61
|
- [`purge`](#purge) - purge files and directories created by `cani`
|
62
|
+
- [`edit`](#edit) - edit the default configuration file
|
62
63
|
|
63
64
|
### use
|
64
65
|
|
@@ -152,6 +153,14 @@ Purges all files created by this command, removing every trace except the execut
|
|
152
153
|
It will also remove source lines added that pointed to the completions in `~/.zshrc` and `~/.bashrc`.
|
153
154
|
After running a `purge`, all that remains is running `gem uninstall cani` to completely purge it.
|
154
155
|
|
156
|
+
### edit
|
157
|
+
|
158
|
+
```sh
|
159
|
+
cani edit
|
160
|
+
```
|
161
|
+
|
162
|
+
Edit the configuration file located at `~/.config/cani/config.yml` using `$EDITOR` env variable.
|
163
|
+
|
155
164
|
## Pipe output
|
156
165
|
|
157
166
|
Last but not least, all `cani` commands can be piped. This will skip running `fzf` and print uncolored output.
|
data/lib/cani/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cani
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sidney Liebrand
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-07-
|
11
|
+
date: 2018-07-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colorize
|
@@ -121,7 +121,6 @@ files:
|
|
121
121
|
- ".travis.yml"
|
122
122
|
- CODE_OF_CONDUCT.md
|
123
123
|
- Gemfile
|
124
|
-
- Gemfile.lock
|
125
124
|
- LICENSE.txt
|
126
125
|
- README.md
|
127
126
|
- Rakefile
|
data/Gemfile.lock
DELETED
@@ -1,47 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
cani (0.4.0)
|
5
|
-
colorize
|
6
|
-
curses
|
7
|
-
json
|
8
|
-
|
9
|
-
GEM
|
10
|
-
remote: https://rubygems.org/
|
11
|
-
specs:
|
12
|
-
coderay (1.1.2)
|
13
|
-
colorize (0.8.1)
|
14
|
-
curses (1.2.4)
|
15
|
-
diff-lcs (1.3)
|
16
|
-
json (2.1.0)
|
17
|
-
method_source (0.9.0)
|
18
|
-
pry (0.11.3)
|
19
|
-
coderay (~> 1.1.0)
|
20
|
-
method_source (~> 0.9.0)
|
21
|
-
rake (10.5.0)
|
22
|
-
rspec (3.7.0)
|
23
|
-
rspec-core (~> 3.7.0)
|
24
|
-
rspec-expectations (~> 3.7.0)
|
25
|
-
rspec-mocks (~> 3.7.0)
|
26
|
-
rspec-core (3.7.1)
|
27
|
-
rspec-support (~> 3.7.0)
|
28
|
-
rspec-expectations (3.7.0)
|
29
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
30
|
-
rspec-support (~> 3.7.0)
|
31
|
-
rspec-mocks (3.7.0)
|
32
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
33
|
-
rspec-support (~> 3.7.0)
|
34
|
-
rspec-support (3.7.1)
|
35
|
-
|
36
|
-
PLATFORMS
|
37
|
-
ruby
|
38
|
-
|
39
|
-
DEPENDENCIES
|
40
|
-
bundler (~> 1.16)
|
41
|
-
cani!
|
42
|
-
pry
|
43
|
-
rake (~> 10.0)
|
44
|
-
rspec (~> 3.0)
|
45
|
-
|
46
|
-
BUNDLED WITH
|
47
|
-
1.16.2
|