hermeneutics 1.20 → 1.21
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/lib/hermeneutics/boxes.rb +7 -5
- data/lib/hermeneutics/version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 26e095f585149d4c8a07af7a415cfcc003a3958cc45f4611490b3a018f19b94b
|
|
4
|
+
data.tar.gz: 20e963ec38f9c4dbace27a15c6c39097ab6bbf6a52528a2b5d4e40aaba15c193
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 760bea637b51c7852ee0b6678af340f60e98fcab925f3376ff5e7ff147106a3d4532b1e7f8e3a3d0eada210826fa26467adb50c99a4c81978bdb08b795b819bf
|
|
7
|
+
data.tar.gz: 1e34626ab27cb6210a20d57f0e30bab31475b8d4040406fcab0636ca97f5a69c4edce39c8f3e9ceee5ddeb425b7e32816680c3c0f9fb6a2149a1a8181e5a0856
|
data/lib/hermeneutics/boxes.rb
CHANGED
|
@@ -287,11 +287,13 @@ module Hermeneutics
|
|
|
287
287
|
#
|
|
288
288
|
def each_file new = nil
|
|
289
289
|
p = File.join @mailbox, new ? NEW : CUR
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
290
|
+
Dir.open p do |d|
|
|
291
|
+
d.sort.each { |fn|
|
|
292
|
+
next if fn.starts_with? "."
|
|
293
|
+
path = File.join p, fn
|
|
294
|
+
yield path
|
|
295
|
+
}
|
|
296
|
+
end
|
|
295
297
|
end
|
|
296
298
|
|
|
297
299
|
# :call-seq:
|
data/lib/hermeneutics/version.rb
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
module Hermeneutics
|
|
14
14
|
|
|
15
15
|
NAME = "hermeneutics"
|
|
16
|
-
VERSION = "1.
|
|
16
|
+
VERSION = "1.21".freeze
|
|
17
17
|
SUMMARY = "CGI and mail handling"
|
|
18
18
|
|
|
19
19
|
DESCRIPTION = <<~EOT
|
|
@@ -21,7 +21,7 @@ module Hermeneutics
|
|
|
21
21
|
and CSS. Further, it is a CGI library.
|
|
22
22
|
EOT
|
|
23
23
|
|
|
24
|
-
COPYRIGHT = "(C) 2013-
|
|
24
|
+
COPYRIGHT = "(C) 2013-2024 Bertram Scharpf"
|
|
25
25
|
LICENSE = "BSD-2-Clause"
|
|
26
26
|
AUTHORS = [ "Bertram Scharpf"]
|
|
27
27
|
MAIL = "<software@bertram-scharpf.de>"
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hermeneutics
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '1.
|
|
4
|
+
version: '1.21'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Bertram Scharpf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-03-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: supplement
|
|
@@ -97,7 +97,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
97
97
|
version: '0'
|
|
98
98
|
requirements:
|
|
99
99
|
- Ruby, at least 3.0
|
|
100
|
-
rubygems_version: 3.
|
|
100
|
+
rubygems_version: 3.5.6
|
|
101
101
|
signing_key:
|
|
102
102
|
specification_version: 4
|
|
103
103
|
summary: CGI and mail handling
|