bundler_bash_completion 0.5.2 → 0.6.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/bin/complete_bundle_bash_command +2 -3
- 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: 19746a42ea6966c27611f2a958c1fa66fb44b7eb
|
4
|
+
data.tar.gz: bc08913741f7128c5d7833434fc124804d4cc80d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3c40190b46d9ba12e9ccc044a3565f1262b4c0b79238a1212879cfffeb0c5ae4fb723af1122371519700a9c218c016c3c974ee8c844cf33fff8a23bffbcd19af
|
7
|
+
data.tar.gz: 988c0af1e4ed0b2ee8d2401873f345d0a723273d67e1e7c6d01e1c05ccacbd4a833bb49e3ff6c8c6a96efae9c5aab970279f00309c1d5ac0f75057ffbad6090f
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.6.0
|
@@ -10,10 +10,9 @@ _bundler_bash_completion() {
|
|
10
10
|
COMPREPLY=($(compgen -W "$completion"))
|
11
11
|
fi
|
12
12
|
}
|
13
|
-
complete -F _bundler_bash_completion bundle
|
13
|
+
complete -o filenames -F _bundler_bash_completion bundle
|
14
14
|
}
|
15
15
|
elsif ARGV[0] == 'complete' && ARGV.size == 2
|
16
16
|
require File.expand_path("#{__dir__}/../lib/bundler_bash_completion")
|
17
|
-
|
18
|
-
puts completion.sort.join("\n") if completion.any?
|
17
|
+
puts BundlerBashCompletion.new(ARGV[1]).complete.sort.join("\n")
|
19
18
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bundler_bash_completion
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.6.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alexis Toulotte
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: byebug
|