rxfhelper 0.9.3 → 1.0.3
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/lib/rxfhelper.rb +72 -0
- metadata +56 -36
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2dddc2f1479ef7082196cf8328f0fa988848d324356e0e8692ebac079f920089
|
4
|
+
data.tar.gz: 981f3d40416b888d4697e48d2460a6ecadce9cb18854613c647629e3ea3397cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efbfd9e808d5388f6bf0c78a3f919e5a69d7c4ca911b4da8513f169e2189aaac37904b2379c2341683873dddbf4bd6df16ddbc09d0ad09b6ec7a8082be530af3
|
7
|
+
data.tar.gz: 03c2e348e4c6a410d590adea7b006b7ab66e6cfc5026c684bad471b7667283480ca26c827a9958af1fbee906e95774f7a0b4c5ec845119b5897790522e4a7d97
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/lib/rxfhelper.rb
CHANGED
@@ -6,6 +6,7 @@ require 'rsc'
|
|
6
6
|
#require 'gpd-request'
|
7
7
|
require 'drb_fileclient'
|
8
8
|
require 'remote_dwsregistry'
|
9
|
+
require 'drb_reg_client'
|
9
10
|
|
10
11
|
|
11
12
|
# Setup: Add a local DNS entry called *reg.lookup* if you are planning on
|
@@ -17,6 +18,25 @@ module RXFHelperModule
|
|
17
18
|
|
18
19
|
def self.chdir(s) RXFHelper.chdir(s) end
|
19
20
|
|
21
|
+
def self.directory?(filename)
|
22
|
+
|
23
|
+
type = self.filetype(filename)
|
24
|
+
|
25
|
+
filex = case type
|
26
|
+
when :file
|
27
|
+
File
|
28
|
+
when :dfs
|
29
|
+
DfsFile
|
30
|
+
else
|
31
|
+
nil
|
32
|
+
end
|
33
|
+
|
34
|
+
return nil unless filex
|
35
|
+
|
36
|
+
filex.directory? filename
|
37
|
+
|
38
|
+
end
|
39
|
+
|
20
40
|
def self.exists?(filename)
|
21
41
|
|
22
42
|
type = self.filetype(filename)
|
@@ -101,6 +121,21 @@ class RXFHelper
|
|
101
121
|
|
102
122
|
@fs = :local
|
103
123
|
|
124
|
+
def self.call(s)
|
125
|
+
|
126
|
+
if s =~ /=/ then
|
127
|
+
|
128
|
+
uri, val = s.split(/=/)
|
129
|
+
self.set uri, val
|
130
|
+
|
131
|
+
else
|
132
|
+
|
133
|
+
self.get s
|
134
|
+
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
|
104
139
|
def self.cp(s1, s2)
|
105
140
|
DfsFile.cp(s1, s2)
|
106
141
|
end
|
@@ -122,7 +157,14 @@ class RXFHelper
|
|
122
157
|
raise RXFHelperException, 'nil found, expected a string' if x.nil?
|
123
158
|
|
124
159
|
if x[/^rse:\/\//] then
|
160
|
+
|
125
161
|
RSC.new.get x
|
162
|
+
|
163
|
+
elsif x[/^reg:\/\//] then
|
164
|
+
|
165
|
+
r = DRbRegClient.new.get(x)
|
166
|
+
r.respond_to?(:value) ? r.value.to_s : r
|
167
|
+
|
126
168
|
else
|
127
169
|
[x, :unknown]
|
128
170
|
end
|
@@ -233,6 +275,11 @@ class RXFHelper
|
|
233
275
|
|
234
276
|
[RSC.new.get(x), :rse]
|
235
277
|
|
278
|
+
elsif x[/^reg:\/\//] then
|
279
|
+
|
280
|
+
r = DRbRegClient.new.get(x)
|
281
|
+
[r.respond_to?(:value) ? r.value.to_s : r, :reg]
|
282
|
+
|
236
283
|
elsif x[/^file:\/\//] or File.exists?(x) then
|
237
284
|
|
238
285
|
puts 'RXFHelper.read before File.read' if opt[:debug]
|
@@ -274,6 +321,10 @@ class RXFHelper
|
|
274
321
|
when /^rse:\/\//
|
275
322
|
|
276
323
|
RSC.new.post(location, s)
|
324
|
+
|
325
|
+
when /^reg:\/\//
|
326
|
+
|
327
|
+
DRbRegClient.new.set(location, s)
|
277
328
|
|
278
329
|
else
|
279
330
|
|
@@ -325,11 +376,32 @@ class RXFHelper
|
|
325
376
|
|
326
377
|
if uri[/^rse:\/\//] then
|
327
378
|
RSC.new.post uri, x
|
379
|
+
|
380
|
+
elsif uri[/^reg:\/\//]
|
381
|
+
|
382
|
+
DRbRegClient.new.set(uri, x)
|
328
383
|
else
|
329
384
|
[uri, :unknown]
|
330
385
|
end
|
331
386
|
|
332
387
|
end
|
388
|
+
|
389
|
+
def self.set(uri, x=nil)
|
390
|
+
|
391
|
+
raise RXFHelperException, 'nil found, expected a string' if uri.nil?
|
392
|
+
puts 'uri: ' + uri.inspect
|
393
|
+
|
394
|
+
if uri[/^rse:\/\//] then
|
395
|
+
RSC.new.post uri, x
|
396
|
+
|
397
|
+
elsif uri[/^reg:\/\//]
|
398
|
+
|
399
|
+
DRbRegClient.new.set(uri, x)
|
400
|
+
else
|
401
|
+
[uri, :unknown]
|
402
|
+
end
|
403
|
+
|
404
|
+
end
|
333
405
|
|
334
406
|
def self.zip(filename, a)
|
335
407
|
DfsFile.zip(filename, a)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rxfhelper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Robertson
|
@@ -11,31 +11,31 @@ cert_chain:
|
|
11
11
|
- |
|
12
12
|
-----BEGIN CERTIFICATE-----
|
13
13
|
MIIEXjCCAsagAwIBAgIBATANBgkqhkiG9w0BAQsFADAsMSowKAYDVQQDDCFnZW1t
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
14
|
+
YXN0ZXIvREM9amFtZXNyb2JlcnRzb24vREM9ZXUwHhcNMjAwNjA4MjEzODA0WhcN
|
15
|
+
MjEwNjA4MjEzODA0WjAsMSowKAYDVQQDDCFnZW1tYXN0ZXIvREM9amFtZXNyb2Jl
|
16
|
+
cnRzb24vREM9ZXUwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDWQmov
|
17
|
+
AqYmuHk/CZu9teuGVYLNhzptyj60X8IkJoiHwxOJ6zZuZbABjPnugfUXSp6BWHZC
|
18
|
+
V4oTccB75gyQj4Ll7seKsavlOyi5Ongnx9OQQF/OkHRh/h/NmXZDsoqCTit3rGWP
|
19
|
+
8RvduvxRd75eGvDOh6SM5/1BN8TwffzBJ76oy4Ds3x/FbQM/1Q3PH2yadwlte3ms
|
20
|
+
M/tOLGZcsTWGXQryxJ7b0tI6qlvZeeF0y9223iEi8lbc+2LTJsvueNdteskp/62/
|
21
|
+
lyC8XKuH5rNsDcGYe0fLEToKt1ihm+h974HE2clgGBaHgyjqce8uajRfJ22Jv5Hw
|
22
|
+
53QTFq0GkljEMBhCkdCCXBoCaAXxPtI1ddSspJwY/co0QLTkmW9D2pm11mdOYKH/
|
23
|
+
pNNlfPCHBvPav/db0vWJFR9CzG9JF4OeuTM8GdD0YXJ9+36rw3+zKDzrqEr4R+B4
|
24
|
+
Nqxn8ECkwgCYYrNoqOUqh+nglLwQcVRBkuFIh8HZLLqFeqD6VfqAXUWHti0CAwEA
|
25
|
+
AaOBijCBhzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUYYjTrG21
|
26
|
+
hWBRLARkj0MHpV5VMeAwJgYDVR0RBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
|
27
27
|
c29uLmV1MCYGA1UdEgQfMB2BG2dlbW1hc3RlckBqYW1lc3JvYmVydHNvbi5ldTAN
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
+
|
36
|
-
|
28
|
+
BgkqhkiG9w0BAQsFAAOCAYEAbFZxX9OnCmYMpYDx7687JBRHdse2aegPHz9ikdkq
|
29
|
+
CY8aRsfKnomGy7tVz/Peb3o+CR7f4fZmxFL7H/eAx5clIaDnEYwoy9v5zEODp6rP
|
30
|
+
l7pHGM+nOFZ8XBtuxobHeab20cmvWrsRhqU41+8TN5PTeiu+6YKzMIUDhquTLD4p
|
31
|
+
7945EAFx5FR++oaAaQ8mvE1UaszulxRUYMD1fdhwmU0/MNyVmsxkA6Z73pnH5+9r
|
32
|
+
vQg/xEWCISwNPDQ8QkREppd8R15YZoUK+McO0DKdJNKHvLeBpTAtzniHKhSJWIJs
|
33
|
+
3Y7aVjx4ObmwUZSTacnTquQMf/TamZ/T0Ve4THAillF+cXFbXwmWGsoSQbAL7dnx
|
34
|
+
qwgCPezsVLzI8dyGDAaKwdnIItN+vIp0EL3/bE1XUY1QwIKGbbI7inSO1Fs0IKFS
|
35
|
+
jqz35QOVAJp+XW1qrnZM464OWlao2nDvKZrkO1pC9jbMUo+eLb8FgqycXd26ZpRf
|
36
|
+
RXFUTIU85mvSCH+/CcNAooQi
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2020-08-28 00:00:00.000000000 Z
|
39
39
|
dependencies:
|
40
40
|
- !ruby/object:Gem::Dependency
|
41
41
|
name: rsc
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
version: '0.4'
|
47
47
|
- - ">="
|
48
48
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.4.
|
49
|
+
version: 0.4.4
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -56,47 +56,67 @@ dependencies:
|
|
56
56
|
version: '0.4'
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: 0.4.
|
59
|
+
version: 0.4.4
|
60
60
|
- !ruby/object:Gem::Dependency
|
61
61
|
name: drb_fileclient
|
62
62
|
requirement: !ruby/object:Gem::Requirement
|
63
63
|
requirements:
|
64
64
|
- - "~>"
|
65
65
|
- !ruby/object:Gem::Version
|
66
|
-
version: '0.
|
66
|
+
version: '0.5'
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.
|
69
|
+
version: 0.5.2
|
70
70
|
type: :runtime
|
71
71
|
prerelease: false
|
72
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
73
|
requirements:
|
74
74
|
- - "~>"
|
75
75
|
- !ruby/object:Gem::Version
|
76
|
-
version: '0.
|
76
|
+
version: '0.5'
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: 0.
|
79
|
+
version: 0.5.2
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: remote_dwsregistry
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
83
83
|
requirements:
|
84
|
-
- - ">="
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version: 0.4.0
|
87
84
|
- - "~>"
|
88
85
|
- !ruby/object:Gem::Version
|
89
86
|
version: '0.4'
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.4.1
|
90
90
|
type: :runtime
|
91
91
|
prerelease: false
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
93
93
|
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0.4'
|
94
97
|
- - ">="
|
95
98
|
- !ruby/object:Gem::Version
|
96
|
-
version: 0.4.
|
99
|
+
version: 0.4.1
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
name: drb_reg_client
|
102
|
+
requirement: !ruby/object:Gem::Requirement
|
103
|
+
requirements:
|
97
104
|
- - "~>"
|
98
105
|
- !ruby/object:Gem::Version
|
99
|
-
version: '0.
|
106
|
+
version: '0.1'
|
107
|
+
- - ">="
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: 0.1.4
|
110
|
+
type: :runtime
|
111
|
+
prerelease: false
|
112
|
+
version_requirements: !ruby/object:Gem::Requirement
|
113
|
+
requirements:
|
114
|
+
- - "~>"
|
115
|
+
- !ruby/object:Gem::Version
|
116
|
+
version: '0.1'
|
117
|
+
- - ">="
|
118
|
+
- !ruby/object:Gem::Version
|
119
|
+
version: 0.1.4
|
100
120
|
description:
|
101
121
|
email: james@jamesrobertson.eu
|
102
122
|
executables: []
|
@@ -123,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
123
143
|
- !ruby/object:Gem::Version
|
124
144
|
version: '0'
|
125
145
|
requirements: []
|
126
|
-
rubygems_version: 3.0.
|
146
|
+
rubygems_version: 3.0.3
|
127
147
|
signing_key:
|
128
148
|
specification_version: 4
|
129
149
|
summary: Helpful library for primarily reading the contents of a file either from
|
metadata.gz.sig
CHANGED
Binary file
|