cani 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8ff42679497b6da393ca2d601e565ca49d501b76b1367e32dfbb2adf3adee28d
4
- data.tar.gz: 332bf2512f53057c7cd7cca0009e073c220793b59e125ba9f3fc1c6d0fc98b7e
3
+ metadata.gz: 76133edfe3fbbd09fbab2328f52ce8f3e90fd56af8991764900d0a7b05c5c738
4
+ data.tar.gz: 735dcc7e1a6ef0dd05d0ab591588691922c777b704b3d09bb4d63dd0fa861045
5
5
  SHA512:
6
- metadata.gz: 1c15d317bf97d80e28f16912b7dc87d3ee40b5cd3b7780265a69fb233fd966091f9713ecd0ec86e20214976290472086bf94ab6d9571ecd67a8e0db8110d8ac7
7
- data.tar.gz: 9171b98adfe8438716418044a53aca5f5dc3da5838933302a3280a4b7d326b8aaa603fda6e710981a0fa469cc6a9e411766911b53d5e707af8a59102be960a3b
6
+ metadata.gz: 37003678fd7735a27edfaa096809853355aa518ae2694beca61e3292b2722cc7cd87f2fd94331e6b1cac22f10a8e7aa400b24cac136dbe9120cdadf324f6d966
7
+ data.tar.gz: f3d7841d99e3d221e495f852bf383f1c560468d07cfc5f0531cef3594b6ee47a817c11c8661d5d5f3331d4491e1e762dda758b8f89e7cc0f43dfd38f680f62ec
data/.gitignore CHANGED
@@ -1,6 +1,7 @@
1
1
  /.bundle/
2
2
  /.yardoc
3
3
  /_yardoc/
4
+ /Gemfile.lock
4
5
  /coverage/
5
6
  /doc/
6
7
  /pkg/
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
@@ -1,3 +1,3 @@
1
1
  module Cani
2
- VERSION = "0.4.0"
2
+ VERSION = "0.4.1"
3
3
  end
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.0
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-25 00:00:00.000000000 Z
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