bundler_bash_completion 0.5.2 → 0.6.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b80e272e9ba72f24099e9dbe6f17583e21ff60bc
4
- data.tar.gz: ae9a8661153f18e614c60c7d3e3f6dc7696f5bd1
3
+ metadata.gz: 19746a42ea6966c27611f2a958c1fa66fb44b7eb
4
+ data.tar.gz: bc08913741f7128c5d7833434fc124804d4cc80d
5
5
  SHA512:
6
- metadata.gz: 9b289d9e06a8b6314d103a39d55f6063b203acece5d796dd1970b71c704b81a70191a7714ed9ab7b5da3950581843191229b2490b0b9c885b37b189cb04cc101
7
- data.tar.gz: 17ad12c126aee96ae966dc3921810bae1d458fadbb93e2efa695e7053c91f7ee5bf784480c7aeb932e33001216587ea69a85a3f0b4bac1cc0dbd25e283ed3ffe
6
+ metadata.gz: 3c40190b46d9ba12e9ccc044a3565f1262b4c0b79238a1212879cfffeb0c5ae4fb723af1122371519700a9c218c016c3c974ee8c844cf33fff8a23bffbcd19af
7
+ data.tar.gz: 988c0af1e4ed0b2ee8d2401873f345d0a723273d67e1e7c6d01e1c05ccacbd4a833bb49e3ff6c8c6a96efae9c5aab970279f00309c1d5ac0f75057ffbad6090f
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.5.2
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
- completion = BundlerBashCompletion.new(ARGV[1]).complete
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.5.2
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-30 00:00:00.000000000 Z
11
+ date: 2016-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: byebug