tmuxinator 3.3.7 → 3.3.8
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/completion/tmuxinator.fish +1 -0
- data/completion/tmuxinator.zsh +1 -1
- data/lib/tmuxinator/version.rb +1 -1
- metadata +4 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 52752c91945099b9d08880c8dc405cd68a68497a9be91c3fda3cb6647730fc51
|
|
4
|
+
data.tar.gz: 2f05391d0c2fd4a2bddc49740744a8102e67a88dd80fe7cd68ec1d123f678f01
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: befa8c88430163f9912bcea81c4dbcbefb6d29d05ce38c9f7799b17d065cc47b70abd08fe7056aa1d3d291152d5c8fedccbe3e458bcb1697b225720b03a44ad8
|
|
7
|
+
data.tar.gz: 6b966f0247e33fde76cb856fd4ebaa3840e7da66ef39e4e48f6d710ffe9d6cc7c60beb493e7f573d9d52b48c9213cca6723a3f602dfbfa8f9811c4d629e94503
|
data/completion/tmuxinator.fish
CHANGED
|
@@ -11,6 +11,7 @@ end
|
|
|
11
11
|
complete --no-files --command tmuxinator --condition __fish_use_subcommand --exclusive --argument "(tmuxinator commands)"
|
|
12
12
|
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command start' --argument "(tmuxinator completions start)"
|
|
13
13
|
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command open' --argument "(tmuxinator completions open)"
|
|
14
|
+
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command stop' --argument "(tmuxinator completions stop)"
|
|
14
15
|
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command edit' --argument "(tmuxinator completions open)"
|
|
15
16
|
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command copy' --argument "(tmuxinator completions copy)"
|
|
16
17
|
complete --no-files --command tmuxinator --condition '__fish_tmuxinator_using_command delete' --argument "(tmuxinator completions delete)"
|
data/completion/tmuxinator.zsh
CHANGED
|
@@ -11,7 +11,7 @@ _tmuxinator() {
|
|
|
11
11
|
'projects:: _describe -t projects "tmuxinator projects" projects'
|
|
12
12
|
elif (( CURRENT == 3)); then
|
|
13
13
|
case $words[2] in
|
|
14
|
-
copy|cp|c|debug|delete|rm|open|o|start|s|edit|e)
|
|
14
|
+
copy|cp|c|debug|delete|rm|open|o|start|s|stop|edit|e)
|
|
15
15
|
_arguments '*:projects:($projects)'
|
|
16
16
|
;;
|
|
17
17
|
esac
|
data/lib/tmuxinator/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tmuxinator
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.3.
|
|
4
|
+
version: 3.3.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Allen Bargi
|
|
8
8
|
- Christopher Chow
|
|
9
|
-
autorequire:
|
|
10
9
|
bindir: bin
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date:
|
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
13
12
|
dependencies:
|
|
14
13
|
- !ruby/object:Gem::Dependency
|
|
15
14
|
name: erubi
|
|
@@ -233,15 +232,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
233
232
|
requirements:
|
|
234
233
|
- - ">="
|
|
235
234
|
- !ruby/object:Gem::Version
|
|
236
|
-
version: '2.
|
|
235
|
+
version: '2.6'
|
|
237
236
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
238
237
|
requirements:
|
|
239
238
|
- - ">="
|
|
240
239
|
- !ruby/object:Gem::Version
|
|
241
240
|
version: '2.7'
|
|
242
241
|
requirements: []
|
|
243
|
-
rubygems_version: 3.
|
|
244
|
-
signing_key:
|
|
242
|
+
rubygems_version: 3.7.2
|
|
245
243
|
specification_version: 4
|
|
246
244
|
summary: Create and manage complex tmux sessions easily.
|
|
247
245
|
test_files:
|