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.
- checksums.yaml +4 -4
- data/README.md +14 -1
- data/lib/boom/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b82b43ad0cbc2ffd2862b29242aff25cc1d2a16d
|
4
|
+
data.tar.gz: 647f74f1b103f0816276913bb389af5840f5e15f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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`
|
data/lib/boom/version.rb
CHANGED
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.
|
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-
|
11
|
+
date: 2016-03-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: commander
|