utils 0.52.0 → 0.52.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dfade6a59e0995d7ee7477ccdafdbda0c14e9797a37c55d4d112f30b31fc2e76
4
- data.tar.gz: c449da7722535dfa051df409388554840e5c146249a06f4bf2b758aada7d492c
3
+ metadata.gz: af8e1e554e81bff32ff0e5a382b722f1e98b9a3c200b3d3f8dfd875235169ce8
4
+ data.tar.gz: 4e1f75f8db3e951a3ef7304843029b6519b7caf3ec936d8b7942d32f1c152440
5
5
  SHA512:
6
- metadata.gz: 588351709d351fe808643d54adf8afa17f89235650bbd54d645fe7a4977c6a31eaedd6fe3b4d0c84907d487e019b098ed6020307c08f327fe5f249c3c6298e6e
7
- data.tar.gz: 04ea3235073f97bf229be082680eadfa366315bc8ea4bba8230808bc87679e82ea40b9b63575f5a7a90e39f2c3ad817e41f00717c8fbccd12959ecd9c98d6af4
6
+ metadata.gz: 2664375885faa1a8f3b747d790308eb7c2929dd5a95cf0f21ebb35d25c68a7e8e23c1968646e1214babb91edb1e7a6a7972b3d873b364f4fd119efcfeb9e8103
7
+ data.tar.gz: d5c4db5b7a10a889bc6d1bc01e7dcf578623a3b0a2eebc85f3e40c0e206bd1a396423a9bad6aaad55e9f464beb9b2daa8d8375c48b0ea94a55a61c0b328bd927
data/bin/discover CHANGED
@@ -64,7 +64,7 @@ STDOUT.sync = true
64
64
  config = Utils::ConfigFile.new
65
65
  config.configure_from_paths
66
66
  args[?b] ||= config.discover.binary
67
- args[?n] ||= args[?l] ? 1 << 60 : config.discover.max_matches
67
+ args[?n] ||= (args[?l] || args[?L]) ? 1 << 60 : config.discover.max_matches
68
68
 
69
69
  if args[?s]
70
70
  pattern = ''
data/lib/utils/finder.rb CHANGED
@@ -18,11 +18,15 @@ class Utils::Finder
18
18
  @args = opts[:args] || {}
19
19
  @roots = discover_roots(opts[:roots])
20
20
  @config = opts[:config] || Utils::ConfigFile.new
21
- pattern_opts = opts.subhash(:pattern) | {
22
- :cset => @args[?a],
23
- :icase => @args[?i] != ?n,
24
- }
25
- @pattern = choose(@args[?p], pattern_opts)
21
+ if @args[?l] || @args[?L]
22
+ @pattern = nil
23
+ else
24
+ pattern_opts = opts.subhash(:pattern) | {
25
+ :cset => @args[?a],
26
+ :icase => @args[?i] != ?n,
27
+ }
28
+ @pattern = choose(@args[?p], pattern_opts)
29
+ end
26
30
  @paths = []
27
31
  reset_index
28
32
  end
@@ -112,7 +116,9 @@ class Utils::Finder
112
116
  paths.select! { |path| s.include?(File.extname(path)[1..-1]) }
113
117
  end
114
118
  paths = paths.map! do |path|
115
- if match = @pattern.match(path)
119
+ if @pattern.nil?
120
+ [ [ path.count(?/), path ], path, path ]
121
+ elsif match = @pattern.match(path)
116
122
  if FuzzyPattern === @pattern
117
123
  current = 0
118
124
  marked_path = ''
data/lib/utils/version.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  module Utils
2
2
  # Utils version
3
- VERSION = '0.52.0'
3
+ VERSION = '0.52.1'
4
4
  VERSION_ARRAY = VERSION.split('.').map(&:to_i) # :nodoc:
5
5
  VERSION_MAJOR = VERSION_ARRAY[0] # :nodoc:
6
6
  VERSION_MINOR = VERSION_ARRAY[1] # :nodoc:
data/utils.gemspec CHANGED
@@ -1,9 +1,9 @@
1
1
  # -*- encoding: utf-8 -*-
2
- # stub: utils 0.52.0 ruby lib
2
+ # stub: utils 0.52.1 ruby lib
3
3
 
4
4
  Gem::Specification.new do |s|
5
5
  s.name = "utils".freeze
6
- s.version = "0.52.0".freeze
6
+ s.version = "0.52.1".freeze
7
7
 
8
8
  s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
9
9
  s.require_paths = ["lib".freeze]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: utils
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.52.0
4
+ version: 0.52.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Florian Frank