rbfind 2.12 → 2.13
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 +12 -2
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98488c856ff5755a635ef73c4c25fa7dfba6f84dbe4ee41546ffb22e4ec82fb1
|
4
|
+
data.tar.gz: f48565d71eedeef67f1cc93008c185df4637f26ba2ca1d409dc0887b44ff48e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee7b581d587bb0730b2aad2a502bc7ef3ce54a1bfe5742ca4bc92995aaba06db6400e30c9d23a2f8ae04c62d0b608cccf2a11cdd64f13bc23ab39f6c6af1e6b9
|
7
|
+
data.tar.gz: bfdb28913be3435781c52c630fbff63d29965908cafee6494a6c6a267a8da1ce568a71424687d8298f655aa66a5998e74d391934689c2d31fa33f9df364c8dc0
|
data/bin/rbfind
CHANGED
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.13".freeze
|
12
12
|
|
13
13
|
=begin rdoc
|
14
14
|
|
@@ -490,8 +490,18 @@ Sort without case sensitivity and preceding dot:
|
|
490
490
|
|
491
491
|
def aage ; @walk.start - stat.atime ; end
|
492
492
|
def mage ; @walk.start - stat.mtime ; end
|
493
|
-
def cage ; @walk.start - stat.ctime ; end
|
494
493
|
alias age mage
|
494
|
+
def cage ; @walk.start - stat.ctime ; end
|
495
|
+
|
496
|
+
# Please consider thoroughly whether you really need this.
|
497
|
+
# https://bugs.ruby-lang.org/issues/21205#change-112494
|
498
|
+
def birthtime
|
499
|
+
stat.birthtime
|
500
|
+
rescue NotImplementedError
|
501
|
+
File.birthtime @path
|
502
|
+
end
|
503
|
+
def birthage ; @walk.start - birthtime ; end
|
504
|
+
alias bage birthage
|
495
505
|
|
496
506
|
# :call-seq:
|
497
507
|
# filesize => nil or int
|
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rbfind
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: '2.
|
4
|
+
version: '2.13'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bertram Scharpf
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-31 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: |
|
14
13
|
A replacement for the standard UNIX command find.
|
@@ -34,7 +33,6 @@ homepage: http://www.bertram-scharpf.de/software/rbfind
|
|
34
33
|
licenses:
|
35
34
|
- BSD-2-Clause
|
36
35
|
metadata: {}
|
37
|
-
post_install_message:
|
38
36
|
rdoc_options:
|
39
37
|
- "--charset"
|
40
38
|
- utf-8
|
@@ -46,16 +44,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
46
44
|
requirements:
|
47
45
|
- - ">="
|
48
46
|
- !ruby/object:Gem::Version
|
49
|
-
version:
|
47
|
+
version: 3.1.0
|
50
48
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
51
49
|
requirements:
|
52
50
|
- - ">="
|
53
51
|
- !ruby/object:Gem::Version
|
54
52
|
version: '0'
|
55
53
|
requirements:
|
56
|
-
-
|
57
|
-
rubygems_version: 3.
|
58
|
-
signing_key:
|
54
|
+
- Just Ruby
|
55
|
+
rubygems_version: 3.6.6
|
59
56
|
specification_version: 4
|
60
57
|
summary: Ruby replacement for the standard Unix find tool
|
61
58
|
test_files: []
|