gloo 5.3.1 → 5.3.2
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/VERSION +1 -1
- data/lib/VERSION_NOTES +4 -0
- data/lib/gloo/objs/system/file_handle.rb +8 -1
- 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: 81669c8fe4c713d9745c72f46a72224a3e274d8e6f2035b29e3ae1368f7c1fdf
|
|
4
|
+
data.tar.gz: 494346cdc7fdee49a54861b2543a18abcc66e9031277276edc168859129c6fa4
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 90e11e209e9d0f19de22f852bf9c69e71fa29ef2e1a94647a632e7ec0bca992cca7f1394c60868db137fef5f13e36792d7a3ab79f883ebd4e2a3408a27b95854
|
|
7
|
+
data.tar.gz: 5b3ebeba05745d3dbc3963af55d1bfc7aee04d1307d3bbdcc96df6fd7f7e58c21d0e260ef84ad0b43e790742fe229c5c4a5aef43b87b27776ac9f2d7bc8cc67e
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.3.
|
|
1
|
+
5.3.2
|
data/lib/VERSION_NOTES
CHANGED
|
@@ -38,7 +38,7 @@ module Gloo
|
|
|
38
38
|
#
|
|
39
39
|
def self.messages
|
|
40
40
|
basic = %w[read write delete get_name get_ext get_parent get_sha256]
|
|
41
|
-
checks = %w[exists? is_file? is_dir?]
|
|
41
|
+
checks = %w[exists? is_file? is_dir? mkdir]
|
|
42
42
|
search = %w[find_match]
|
|
43
43
|
show = %w[show page open]
|
|
44
44
|
return super + basic + show + checks + search
|
|
@@ -135,6 +135,13 @@ module Gloo
|
|
|
135
135
|
@engine.heap.it.set_to result
|
|
136
136
|
end
|
|
137
137
|
|
|
138
|
+
#
|
|
139
|
+
# Create a directory.
|
|
140
|
+
#
|
|
141
|
+
def msg_mkdir
|
|
142
|
+
Dir.mkdir(value) unless Dir.exist?(value)
|
|
143
|
+
end
|
|
144
|
+
|
|
138
145
|
#
|
|
139
146
|
# Look for any file matching pattern.
|
|
140
147
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gloo
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.3.
|
|
4
|
+
version: 5.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Crane
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-04-
|
|
11
|
+
date: 2026-04-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|