vundle-cli 0.0.5 → 0.0.6

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: a51e28b5712cf35b5614b165e037e871d4a9bbd1
4
- data.tar.gz: bba5fce4898c70459afd27a892597b65b6b80e15
3
+ metadata.gz: 8c75d3d265b458ba55a4ce2e79d746650fdb1250
4
+ data.tar.gz: 4795a1f6a38add4462c5842eb9c364278310d174
5
5
  SHA512:
6
- metadata.gz: 05b8e989d93f5c8b5988b8a0fc96c6b9e55cfd08928b9bf8cbef83d809b9a7878d1c429edd6d2036fd4e3400270929f0977fa60b0cfd72b7899988ff229b46e1
7
- data.tar.gz: c638dc5f896712a0cb67feb5b83c291115920064df774e575be68f19a6905ea6b166bb23a261f8d2dc2a48e4150f75c9f398d939c7bbc19f91ff5e5277e6ca2d
6
+ metadata.gz: 8763579a37533c6b81b12821b84640576818fecbb3fc5f58dadfbdf39a5603f2ab0e3e361197dbbfad07df2b318f586e9f9f96995755815f5848d29bcd45e16e
7
+ data.tar.gz: 9e4f9f63a71c68db50cd7259c65f6454a6ddb9c64c8904134d642388bb1381e4cd7fd5769ee67b7fb615d2674dd08a2cfc28d5263f2be5841479afb353291ca0
@@ -28,7 +28,7 @@ module VundleCli
28
28
  matches = l.chomp.match(/^Bundle (\S*)/)
29
29
  if matches
30
30
  bundle = matches[1].gsub("'", '')
31
- puts "Found #{bundle}" if bundle.include?(@bundle)
31
+ puts "Found #{bundle}" if bundle.downcase.include?(@bundle.downcase)
32
32
  end
33
33
  }
34
34
  end
@@ -49,7 +49,7 @@ module VundleCli
49
49
  end
50
50
 
51
51
  Dir.foreach(@settings_dir) do |fname|
52
- next unless fname.include? bundle_name
52
+ next unless fname.downcase.include?(bundle_name.downcase)
53
53
  puts "Found #{@settings_dir}/#{fname} setting file. Remove it? (yes/no) "
54
54
  input = STDIN.gets.chomp
55
55
  if input == 'yes'
@@ -1,3 +1,3 @@
1
1
  module VundleCli
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vundle-cli
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bao Pham