desktop-boom 0.6.0 → 0.6.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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +14 -1
  3. data/lib/boom/version.rb +1 -1
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9098e00da00869a987eff3b0c96b98f701be2a5b
4
- data.tar.gz: f18f9af08adae951339b43d878dc69e6c18b9c26
3
+ metadata.gz: b82b43ad0cbc2ffd2862b29242aff25cc1d2a16d
4
+ data.tar.gz: 647f74f1b103f0816276913bb389af5840f5e15f
5
5
  SHA512:
6
- metadata.gz: 8af07af0cc39312feea4af13acf146c6bc656c975361c8ea6061ca2a221ef55db3e1a8f6f80869721433ea0ad8604efe13abd317516fe88ebbe69b24045c4c81
7
- data.tar.gz: 98056598ad8f94bea85d91f5c375c793aa727e8c5e59421f73ab3cd450b2f1e19478726d7043441c600bf6abfcc3b78f40ebfe6b7be1c7e6ddd9895295f6c45a
6
+ metadata.gz: 4b72427312d1229a892059b3c834e21fc5d13910753140f413d129a05ba84e6838735214aa81bd6f30becbbb42805ea404dbb21db7b9541d7b578c650abca6ed
7
+ data.tar.gz: e7c108282d4ca48b879587847c867ff9f32f3f2e6937bdf4aff79db243e7982e730c143693ec20347112a072565cc2496bb21f9fba3a6f80a9f194d0b0e81d06
data/README.md CHANGED
@@ -35,7 +35,7 @@ $ boom --help
35
35
 
36
36
  Auto-completion of project names for bash
37
37
  ---
38
- If you use the bash shell, you can enable auto-completion of project names when you type `boom` by adding the following to your `.profile` or `.bashrc` file:
38
+ If you use the [bash](https://www.gnu.org/software/bash/) shell, you can enable auto-completion of project names when you type `boom` by adding the following to your `.profile` or `.bashrc` file:
39
39
 
40
40
  ```
41
41
  _complete_boom_project_names() {
@@ -46,6 +46,19 @@ _complete_boom_project_names() {
46
46
  complete -F _complete_boom_project_names boom
47
47
  ```
48
48
 
49
+ Auto-completion of project names for fish
50
+ ---
51
+ If you use the [fish](https://fishshell.com) shell, you can enable auto-completion of project names when you type `boom` by adding the following to a file in one of the directories listed in the value for `$fish_complete_path`. `~/.config/fish/completions/boom.fish` usually works.
52
+
53
+ ```
54
+ function __fish_boom_projects
55
+ command boom list | cut -c 3-
56
+ end
57
+
58
+ ### Don't bother with specifically supporting "subcommands" like `switch`. Always complete with project names
59
+ complete -f -c boom -a '(__fish_boom_projects)' -d 'Projects'
60
+ ```
61
+
49
62
  Installation
50
63
  ---
51
64
  `gem install desktop-boom`
@@ -1,3 +1,3 @@
1
1
  module DesktopBoom
2
- VERSION = '0.6.0'
2
+ VERSION = '0.6.1'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: desktop-boom
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hwee-Boon Yar
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-03-29 00:00:00.000000000 Z
11
+ date: 2016-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: commander