rbfind 2.3.1 → 2.4
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/bin/rbfind +1 -1
- data/lib/rbfind.rb +7 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cc576c9c24d5acd2c31b95e55bfd40b306c1510060c06c2a5d00140c1fca77dd
|
4
|
+
data.tar.gz: e2a95604bf31b4290d71b0c93da8bff1cde417407cf6c22c79872cf4132c6de3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 671c10d123f2a025f4ee3b0f0b08cbe2a74ef830a0b8f56cd7485470c68051902db9ace56b00a5f479d36ceefb802d133ddd43aa5cc025286a49405ce4860e79
|
7
|
+
data.tar.gz: 39a4b9cd0565455b010228a68fefd7d021e81953cdd23c150555a83fef577a342282f42b6476c6f1e97287d9e99b659349284eae55244fbfff01edf40a2d724c
|
data/bin/rbfind
CHANGED
@@ -142,7 +142,7 @@ module RbFind
|
|
142
142
|
@binary or @block = "not binary? and (#@block)"
|
143
143
|
|
144
144
|
else
|
145
|
-
@block ||= if @args.last and not (File.
|
145
|
+
@block ||= if @args.last and not (File.lstat @args.last rescue false) then
|
146
146
|
@args.pop.dup
|
147
147
|
else
|
148
148
|
@puts ||= true
|
data/lib/rbfind.rb
CHANGED
@@ -8,7 +8,7 @@ require "rbfind/csv"
|
|
8
8
|
|
9
9
|
module RbFind
|
10
10
|
|
11
|
-
VERSION = "2.
|
11
|
+
VERSION = "2.4".freeze
|
12
12
|
|
13
13
|
=begin rdoc
|
14
14
|
|
@@ -307,7 +307,7 @@ Sort without case sensitivity and preceding dot:
|
|
307
307
|
else
|
308
308
|
args.each { |base|
|
309
309
|
handle_error do
|
310
|
-
File.
|
310
|
+
File.lstat base rescue raise "`#{base}` doesn't exist."
|
311
311
|
visit_depth base
|
312
312
|
end
|
313
313
|
}
|
@@ -552,7 +552,11 @@ Sort without case sensitivity and preceding dot:
|
|
552
552
|
# Check whether a directory contains an entry.
|
553
553
|
#
|
554
554
|
def contains? name
|
555
|
-
|
555
|
+
p = File.join @path, name
|
556
|
+
File.lstat p
|
557
|
+
true
|
558
|
+
rescue
|
559
|
+
false
|
556
560
|
end
|
557
561
|
|
558
562
|
# :call-seq:
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbfind
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: '2.4'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bertram Scharpf
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-11-07 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description: |
|
14
14
|
A replacement for the standard UNIX command find.
|