rxfhelper 1.1.3 → 1.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/lib/rxfhelper.rb +192 -159
- data.tar.gz.sig +3 -4
- metadata +39 -38
- 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: 7b2b3cae6cf8bea604db55ccbbcaaaa66d0520beda41c176bcda8c7e9ddcc4df
|
4
|
+
data.tar.gz: e20c05524b6824edfb440ce5ef94938bc00bb189f2251e9005b1bbb0c218b719
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c856678181998759bfeb49ab9e70ee3d2ba3d493a1c08005bfef02857add70a5bd98fbf9d6564058a7f0c8fefd3d70d99a7ba17d693591d111665082f860850b
|
7
|
+
data.tar.gz: 35350a3aa442e65836e1331ecad56883373ff7820f26b775ade08888e72c5ed316c9587eacda8c2a016ca8016603fb754b6fa0dc66b1c29c0468b8ec886db567
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/lib/rxfhelper.rb
CHANGED
@@ -15,15 +15,24 @@ require 'remote_dwsregistry'
|
|
15
15
|
# using the Registry feaure to look up objects automatically.
|
16
16
|
|
17
17
|
module RXFHelperModule
|
18
|
-
|
18
|
+
|
19
|
+
class DirX
|
20
|
+
|
21
|
+
def self.chdir(s) RXFHelper.chdir(s) end
|
22
|
+
def self.glob(s) RXFHelper.glob(s) end
|
23
|
+
def self.mkdir(s) RXFHelper.mkdir(s) end
|
24
|
+
def self.pwd() RXFHelper.pwd() end
|
25
|
+
|
26
|
+
end
|
27
|
+
|
19
28
|
class FileX
|
20
29
|
|
21
30
|
def self.chdir(s) RXFHelper.chdir(s) end
|
22
31
|
|
23
32
|
def self.directory?(filename)
|
24
|
-
|
33
|
+
|
25
34
|
type = self.filetype(filename)
|
26
|
-
|
35
|
+
|
27
36
|
filex = case type
|
28
37
|
when :file
|
29
38
|
File
|
@@ -34,15 +43,15 @@ module RXFHelperModule
|
|
34
43
|
end
|
35
44
|
|
36
45
|
return nil unless filex
|
37
|
-
|
46
|
+
|
38
47
|
filex.directory? filename
|
39
|
-
|
48
|
+
|
40
49
|
end
|
41
|
-
|
50
|
+
|
42
51
|
def self.exists?(filename)
|
43
|
-
|
52
|
+
|
44
53
|
type = self.filetype(filename)
|
45
|
-
|
54
|
+
|
46
55
|
filex = case type
|
47
56
|
when :file
|
48
57
|
File
|
@@ -56,19 +65,19 @@ module RXFHelperModule
|
|
56
65
|
end
|
57
66
|
|
58
67
|
return nil unless filex
|
59
|
-
|
68
|
+
|
60
69
|
filex.exists? filename
|
61
|
-
|
70
|
+
|
62
71
|
end
|
63
|
-
|
72
|
+
|
64
73
|
def self.exist?(filename)
|
65
74
|
exists? filename
|
66
75
|
end
|
67
76
|
|
68
77
|
def self.filetype(x)
|
69
|
-
|
78
|
+
|
70
79
|
return :string if x.lines.length > 1
|
71
|
-
|
80
|
+
|
72
81
|
case x
|
73
82
|
when /^rse:\/\//
|
74
83
|
:rse
|
@@ -81,26 +90,27 @@ module RXFHelperModule
|
|
81
90
|
when /^file:\/\//
|
82
91
|
:file
|
83
92
|
else
|
84
|
-
|
93
|
+
|
85
94
|
if File.exists?(x) then
|
86
95
|
:file
|
87
96
|
else
|
88
97
|
:text
|
89
98
|
end
|
90
|
-
|
99
|
+
|
91
100
|
end
|
92
101
|
end
|
93
102
|
|
94
|
-
def self.
|
95
|
-
def self.
|
96
|
-
def self.
|
97
|
-
def self.
|
98
|
-
def self.
|
99
|
-
def self.
|
100
|
-
def self.
|
101
|
-
def self.
|
102
|
-
def self.
|
103
|
-
def self.
|
103
|
+
def self.chmod(num, s) RXFHelper.chmod(num, s) end
|
104
|
+
def self.cp(s, s2) RXFHelper.cp(s, s2) end
|
105
|
+
def self.ls(s) RXFHelper.ls(s) end
|
106
|
+
def self.mkdir(s) RXFHelper.mkdir(s) end
|
107
|
+
def self.mkdir_p(s) RXFHelper.mkdir_p(s) end
|
108
|
+
def self.mv(s, s2) RXFHelper.mv(s, s2) end
|
109
|
+
def self.pwd() RXFHelper.pwd() end
|
110
|
+
def self.read(x) RXFHelper.read(x).first end
|
111
|
+
def self.rm(s) RXFHelper.rm(s) end
|
112
|
+
def self.write(x, s) RXFHelper.write(x, s) end
|
113
|
+
def self.zip(s, a) RXFHelper.zip(s, a) end
|
104
114
|
|
105
115
|
end
|
106
116
|
end
|
@@ -120,30 +130,43 @@ end
|
|
120
130
|
#
|
121
131
|
class RXFHelper
|
122
132
|
using ColouredText
|
123
|
-
|
133
|
+
|
124
134
|
@fs = :local
|
125
|
-
|
135
|
+
|
126
136
|
def self.call(s)
|
127
|
-
|
137
|
+
|
128
138
|
if s =~ /=/ then
|
129
|
-
|
139
|
+
|
130
140
|
uri, val = s.split(/=/)
|
131
141
|
self.set uri, val
|
132
|
-
|
142
|
+
|
133
143
|
else
|
134
|
-
|
144
|
+
|
135
145
|
self.get s
|
136
|
-
|
146
|
+
|
137
147
|
end
|
138
|
-
|
148
|
+
|
139
149
|
end
|
140
|
-
|
150
|
+
|
151
|
+
def self.chmod(permissions, s)
|
152
|
+
|
153
|
+
return unless permissions.is_a? Integer
|
154
|
+
return unless s.is_a? String
|
155
|
+
|
156
|
+
if s[/^dfs:\/\//] or @fs == :dfs then
|
157
|
+
DfsFile.chmod permissions, s
|
158
|
+
else
|
159
|
+
FileUtils.chmod permissions, s
|
160
|
+
end
|
161
|
+
|
162
|
+
end
|
163
|
+
|
141
164
|
def self.cp(s1, s2)
|
142
|
-
|
165
|
+
|
143
166
|
found = [s1,s2].grep /^\w+:\/\//
|
144
|
-
|
167
|
+
|
145
168
|
if found then
|
146
|
-
|
169
|
+
|
147
170
|
case found.first[/^\w+(?=:\/\/)/].to_sym
|
148
171
|
|
149
172
|
when :dfs
|
@@ -151,18 +174,18 @@ class RXFHelper
|
|
151
174
|
when :ftp
|
152
175
|
MyMediaFTP.cp s1, s2
|
153
176
|
else
|
154
|
-
|
155
|
-
end
|
156
|
-
|
177
|
+
|
178
|
+
end
|
179
|
+
|
157
180
|
else
|
158
|
-
|
181
|
+
|
159
182
|
FileUtils.cp s1, s2
|
160
|
-
|
183
|
+
|
161
184
|
end
|
162
185
|
end
|
163
|
-
|
186
|
+
|
164
187
|
def self.chdir(x)
|
165
|
-
|
188
|
+
|
166
189
|
if x[/^file:\/\//] or File.exists?(File.dirname(x)) then
|
167
190
|
@fs = :local
|
168
191
|
FileUtils.chdir x
|
@@ -170,32 +193,42 @@ class RXFHelper
|
|
170
193
|
@fs = :dfs
|
171
194
|
DfsFile.chdir x
|
172
195
|
end
|
173
|
-
|
196
|
+
|
174
197
|
end
|
175
|
-
|
176
|
-
def self.get(x)
|
177
198
|
|
178
|
-
|
179
|
-
|
199
|
+
def self.get(x)
|
200
|
+
|
201
|
+
raise RXFHelperException, 'nil found, expected a string' if x.nil?
|
202
|
+
|
180
203
|
if x[/^rse:\/\//] then
|
181
|
-
|
204
|
+
|
182
205
|
RSC.new.get x
|
183
|
-
|
206
|
+
|
184
207
|
elsif x[/^reg:\/\//] then
|
185
|
-
|
208
|
+
|
186
209
|
r = DRbRegClient.new.get(x)
|
187
210
|
r.is_a?(Rexle::Element::Value) ? r.to_s : r
|
188
|
-
|
211
|
+
|
189
212
|
else
|
190
213
|
[x, :unknown]
|
191
214
|
end
|
192
215
|
|
193
216
|
end
|
194
|
-
|
217
|
+
|
218
|
+
def self.glob(s)
|
219
|
+
|
220
|
+
if s[/^dfs:\/\//] then
|
221
|
+
DfsFile.glob(s)
|
222
|
+
else
|
223
|
+
Dir.glob(s)
|
224
|
+
end
|
225
|
+
|
226
|
+
end
|
227
|
+
|
195
228
|
def self.ls(x='*')
|
196
|
-
|
229
|
+
|
197
230
|
return Dir[x] if File.exists?(File.dirname(x))
|
198
|
-
|
231
|
+
|
199
232
|
case x[/^\w+(?=:\/\/)/].to_sym
|
200
233
|
when :file
|
201
234
|
Dir[x]
|
@@ -204,127 +237,127 @@ class RXFHelper
|
|
204
237
|
when :ftp
|
205
238
|
MyMediaFTP.ls x
|
206
239
|
else
|
207
|
-
|
208
|
-
end
|
209
|
-
|
240
|
+
|
241
|
+
end
|
242
|
+
|
210
243
|
end
|
211
|
-
|
244
|
+
|
212
245
|
def self.mkdir(x)
|
213
|
-
|
246
|
+
|
214
247
|
if x[/^file:\/\//] or File.exists?(File.dirname(x)) then
|
215
248
|
FileUtils.mkdir x
|
216
249
|
elsif x[/^dfs:\/\//]
|
217
250
|
DfsFile.mkdir x
|
218
251
|
end
|
219
|
-
|
252
|
+
|
220
253
|
end
|
221
|
-
|
254
|
+
|
222
255
|
def self.mkdir_p(x)
|
223
|
-
|
256
|
+
|
224
257
|
if x[/^dfs:\/\//] or @fs == :dfs then
|
225
258
|
DfsFile.mkdir_p x
|
226
259
|
else
|
227
|
-
FileUtils.mkdir_p x
|
260
|
+
FileUtils.mkdir_p x
|
228
261
|
end
|
229
|
-
|
262
|
+
|
230
263
|
end
|
231
|
-
|
264
|
+
|
232
265
|
def self.mv(s1, s2)
|
233
266
|
DfsFile.mv(s1, s2)
|
234
|
-
end
|
235
|
-
|
267
|
+
end
|
268
|
+
|
236
269
|
# used by self.read
|
237
|
-
#
|
270
|
+
#
|
238
271
|
def self.objectize(contents)
|
239
|
-
|
272
|
+
|
240
273
|
doctype = contents.lines.first[/(?<=^<\?)\w+/]
|
241
274
|
reg = RemoteDwsRegistry.new domain: 'reg.lookup', port: '9292'
|
242
275
|
r = reg.get_key 'hkey_gems/doctype/' + doctype
|
243
|
-
|
276
|
+
|
244
277
|
return contents unless r
|
245
278
|
|
246
279
|
require r.text('require')
|
247
|
-
|
280
|
+
|
248
281
|
obj = Object.const_get(r.text('class')).new
|
249
282
|
obj.import contents
|
250
|
-
obj
|
283
|
+
obj
|
251
284
|
end
|
252
|
-
|
285
|
+
|
253
286
|
def self.pwd()
|
254
|
-
|
287
|
+
|
255
288
|
DfsFile.pwd
|
256
|
-
|
257
|
-
end
|
258
|
-
|
259
|
-
def self.read(x, h={})
|
260
|
-
|
289
|
+
|
290
|
+
end
|
291
|
+
|
292
|
+
def self.read(x, h={})
|
293
|
+
|
261
294
|
opt = {debug: false, auto: false}.merge(h)
|
262
|
-
|
295
|
+
|
263
296
|
debug = opt[:debug]
|
264
297
|
|
265
298
|
puts 'x: ' + x.inspect if opt[:debug]
|
266
299
|
raise RXFHelperException, 'nil found, expected a string' if x.nil?
|
267
|
-
|
300
|
+
|
268
301
|
if x.class.to_s =~ /Rexle$/ then
|
269
|
-
|
302
|
+
|
270
303
|
[x.xml, :rexle]
|
271
|
-
|
304
|
+
|
272
305
|
elsif x.strip[/^<(\?xml|[^\?])/] then
|
273
|
-
|
306
|
+
|
274
307
|
[x, :xml]
|
275
|
-
|
308
|
+
|
276
309
|
elsif x.lines.length == 1 then
|
277
|
-
|
310
|
+
|
278
311
|
puts 'x.lines == 1'.info if debug
|
279
|
-
|
312
|
+
|
280
313
|
if x[/^https?:\/\//] then
|
281
|
-
|
314
|
+
|
282
315
|
puts 'before GPDRequest'.info if debug
|
283
|
-
|
316
|
+
|
284
317
|
r = GPDRequest.new(opt[:username], opt[:password]).get(x)
|
285
|
-
|
318
|
+
|
286
319
|
case r.code
|
287
|
-
when '404'
|
320
|
+
when '404'
|
288
321
|
raise(RXFHelperException, "404 %s not found" % x)
|
289
|
-
when '401'
|
290
|
-
raise(RXFHelperException, "401 %s unauthorized access" % x)
|
322
|
+
when '401'
|
323
|
+
raise(RXFHelperException, "401 %s unauthorized access" % x)
|
291
324
|
end
|
292
|
-
|
325
|
+
|
293
326
|
obj = opt[:auto] ? objectize(r.body) : r.body
|
294
|
-
|
327
|
+
|
295
328
|
[obj, :url]
|
296
|
-
|
329
|
+
|
297
330
|
elsif x[/^dfs:\/\//] then
|
298
|
-
|
331
|
+
|
299
332
|
r = DfsFile.read(x)
|
300
|
-
[opt[:auto] ? objectize(r) : r, :dfs]
|
301
|
-
|
333
|
+
[opt[:auto] ? objectize(r) : r, :dfs]
|
334
|
+
|
302
335
|
elsif x[/^ftp:\/\//] then
|
303
|
-
|
304
|
-
[MyMediaFTP.read(x), :ftp]
|
305
|
-
|
336
|
+
|
337
|
+
[MyMediaFTP.read(x), :ftp]
|
338
|
+
|
306
339
|
elsif x[/^rse:\/\//] then
|
307
|
-
|
340
|
+
|
308
341
|
[RSC.new.get(x), :rse]
|
309
|
-
|
342
|
+
|
310
343
|
elsif x[/^reg:\/\//] then
|
311
|
-
|
312
|
-
r = DRbRegClient.new.get(x)
|
344
|
+
|
345
|
+
r = DRbRegClient.new.get(x)
|
313
346
|
[r.is_a?(Rexle::Element::Value) ? r.to_s : r, :reg]
|
314
|
-
|
347
|
+
|
315
348
|
elsif x[/^file:\/\//] or File.exists?(x) then
|
316
|
-
|
349
|
+
|
317
350
|
puts 'RXFHelper.read before File.read' if opt[:debug]
|
318
351
|
contents = File.read(File.expand_path(x.sub(%r{^file://}, '')))
|
319
|
-
|
352
|
+
|
320
353
|
puts 'contents2: ' + contents.inspect if opt[:debug]
|
321
|
-
|
354
|
+
|
322
355
|
puts 'opt: ' + opt.inspect if opt[:debug]
|
323
|
-
|
356
|
+
|
324
357
|
obj = opt[:auto] ? objectize(contents) : contents
|
325
|
-
|
358
|
+
|
326
359
|
[obj, :file]
|
327
|
-
|
360
|
+
|
328
361
|
elsif x =~ /\s/
|
329
362
|
[x, :text]
|
330
363
|
elsif DfsFile.exists?(x)
|
@@ -332,73 +365,73 @@ class RXFHelper
|
|
332
365
|
else
|
333
366
|
[x, :unknown]
|
334
367
|
end
|
335
|
-
|
368
|
+
|
336
369
|
else
|
337
370
|
|
338
371
|
[x, :unknown]
|
339
372
|
end
|
340
373
|
end
|
341
|
-
|
374
|
+
|
342
375
|
def self.rm(filename)
|
343
|
-
|
376
|
+
|
344
377
|
case filename[/^\w+(?=:\/\/)/].to_sym
|
345
378
|
when :dfs
|
346
379
|
DfsFile.rm filename
|
347
380
|
when :ftp
|
348
|
-
MyMediaFTP.rm filename
|
381
|
+
MyMediaFTP.rm filename
|
349
382
|
else
|
350
|
-
|
351
|
-
end
|
352
|
-
|
383
|
+
|
384
|
+
end
|
385
|
+
|
353
386
|
end
|
354
|
-
|
387
|
+
|
355
388
|
def self.write(location, s=nil)
|
356
|
-
|
389
|
+
|
357
390
|
case location
|
358
391
|
when /^dfs:\/\//
|
359
|
-
|
392
|
+
|
360
393
|
DfsFile.write location, s
|
361
|
-
|
394
|
+
|
362
395
|
when /^ftp:\/\// then
|
363
|
-
|
396
|
+
|
364
397
|
MyMediaFTP.write location, s
|
365
|
-
|
398
|
+
|
366
399
|
when /^rse:\/\//
|
367
|
-
|
400
|
+
|
368
401
|
RSC.new.post(location, s)
|
369
402
|
|
370
403
|
when /^reg:\/\//
|
371
|
-
|
404
|
+
|
372
405
|
DRbRegClient.new.set(location, s)
|
373
|
-
|
406
|
+
|
374
407
|
else
|
375
|
-
|
408
|
+
|
376
409
|
if DfsFile.exists?(File.dirname(location)) then
|
377
410
|
DfsFile.write location, s
|
378
411
|
else
|
379
412
|
File.write(location, s)
|
380
413
|
end
|
381
|
-
|
414
|
+
|
382
415
|
end
|
383
|
-
|
416
|
+
|
384
417
|
end
|
385
|
-
|
418
|
+
|
386
419
|
def self.writeable?(source)
|
387
420
|
|
388
421
|
return false if source.lines.length > 1
|
389
|
-
|
422
|
+
|
390
423
|
if not source =~ /:\/\// then
|
391
|
-
|
424
|
+
|
392
425
|
return true if File.exists? source
|
393
|
-
|
426
|
+
|
394
427
|
else
|
395
|
-
|
428
|
+
|
396
429
|
return true if source =~ /^dfs:/
|
397
|
-
|
430
|
+
|
398
431
|
end
|
399
|
-
|
432
|
+
|
400
433
|
return false
|
401
|
-
end
|
434
|
+
end
|
402
435
|
|
403
436
|
def self.absolute_url(page_url, item_location)
|
404
437
|
|
@@ -413,42 +446,42 @@ class RXFHelper
|
|
413
446
|
else
|
414
447
|
File.join page_url[/.*\//], item_location
|
415
448
|
end
|
416
|
-
end
|
417
|
-
|
418
|
-
def self.post(uri, x=nil)
|
449
|
+
end
|
450
|
+
|
451
|
+
def self.post(uri, x=nil)
|
452
|
+
|
453
|
+
raise RXFHelperException, 'nil found, expected a string' if uri.nil?
|
419
454
|
|
420
|
-
raise RXFHelperException, 'nil found, expected a string' if uri.nil?
|
421
|
-
|
422
455
|
if uri[/^rse:\/\//] then
|
423
456
|
RSC.new.post uri, x
|
424
|
-
|
457
|
+
|
425
458
|
elsif uri[/^reg:\/\//]
|
426
|
-
|
427
|
-
DRbRegClient.new.set(uri, x)
|
459
|
+
|
460
|
+
DRbRegClient.new.set(uri, x)
|
428
461
|
else
|
429
462
|
[uri, :unknown]
|
430
463
|
end
|
431
464
|
|
432
465
|
end
|
433
|
-
|
434
|
-
def self.set(uri, x=nil)
|
435
466
|
|
436
|
-
|
467
|
+
def self.set(uri, x=nil)
|
468
|
+
|
469
|
+
raise RXFHelperException, 'nil found, expected a string' if uri.nil?
|
437
470
|
puts 'uri: ' + uri.inspect
|
438
|
-
|
471
|
+
|
439
472
|
if uri[/^rse:\/\//] then
|
440
473
|
RSC.new.post uri, x
|
441
|
-
|
474
|
+
|
442
475
|
elsif uri[/^reg:\/\//]
|
443
|
-
|
444
|
-
DRbRegClient.new.set(uri, x)
|
476
|
+
|
477
|
+
DRbRegClient.new.set(uri, x)
|
445
478
|
else
|
446
479
|
[uri, :unknown]
|
447
480
|
end
|
448
481
|
|
449
|
-
end
|
482
|
+
end
|
450
483
|
|
451
484
|
def self.zip(filename, a)
|
452
485
|
DfsFile.zip(filename, a)
|
453
|
-
end
|
486
|
+
end
|
454
487
|
end
|
data.tar.gz.sig
CHANGED
@@ -1,4 +1,3 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
�����z֊T��, *w��S˗��m��;�����h���jwnVI�Ei.�H:��ۂq���j��QZ�!�
|
1
|
+
o+%wk����PX�SG�������x�k�A�$k_w��ޣ�k-�k2���?�
|
2
|
+
�Ų&�=pL�1(���8��&�i�@S�����Ϧ�#�D�JO�D��M0tÔj�����5 ��S�48�������u���q���0#�6ET�h#<�
|
3
|
+
ͯ���������� �r�3��p$���/��,�|�.���5�E�zU�g���2]q���V�4d��Y&I���g&�-�JK��蓐�\Q8i�ȼ���.fsW����q�-���u����E��Ee_W_k3w`�c�����ή�Z����-��D*Y #4�"�!s$P]iEB���IP�G=C���j[�̢�E��
|
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: 1.1.
|
4
|
+
version: 1.1.4
|
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
|
+
YXN0ZXIvREM9amFtZXNyb2JlcnRzb24vREM9ZXUwHhcNMjIwMTE4MTczMTA2WhcN
|
15
|
+
MjMwMTE4MTczMTA2WjAsMSowKAYDVQQDDCFnZW1tYXN0ZXIvREM9amFtZXNyb2Jl
|
16
|
+
cnRzb24vREM9ZXUwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDlkWGl
|
17
|
+
esqnbyZmN+BJKMEyffYUvpKl19PulNj+5nPMQaIBIC+gIj1GkjhTEQ22O6KqQcLz
|
18
|
+
jUgUIAKkeLRn+CR1txkyLwWBMxlfav3SxpBdXztMIdcAgEpjSXhz8UVaxc5j91+K
|
19
|
+
Ut39rKm8SlA7UXTJcxXFcEMBNbbka8NoNqLBE7yYzXsOSkP5HOfRVdAIiFE0cnGx
|
20
|
+
g+uPcyAlstH8zY40PtIcC2WF4p0/Ct9gQ33xOkVoyl2zHwsiOQf8pde1S/zEnMi9
|
21
|
+
6oyY+t3qHF4+eLB1EJdz1HSZBZgP1tuPgrzecNrxz0eDhlqmghJ/dA3uv1SK5hRO
|
22
|
+
UhxMJPOqrQy3AJYcSrUEOZ1+KnoyOuLx/HJYY6jMO+eyVBMy+nvkCP6bT2eUR2Oh
|
23
|
+
y0n3UCYsBV9IaaosP8mU91VxJxyXXPjTUhWNf6+l0d33Uwu6FwsQIPEchPEkrC9q
|
24
|
+
USbNDmMDT52SjkD8nXTNcA1x7oHIwFR52G9dS3LpR3CG6xOL6CWYGAJ1gqUCAwEA
|
25
|
+
AaOBijCBhzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQU8ByH4nu8
|
26
|
+
xigv1OSUzrR5R4HKv3wwJgYDVR0RBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
|
27
27
|
c29uLmV1MCYGA1UdEgQfMB2BG2dlbW1hc3RlckBqYW1lc3JvYmVydHNvbi5ldTAN
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
28
|
+
BgkqhkiG9w0BAQsFAAOCAYEAq+KozVOg+hwCvAi6vv5tb2qG0Kd7d8xL+6gYcC5X
|
29
|
+
4X83IIqwWYeSWDC+ZGXNIw5j6N3vcvTgHiTns1CVtH8W+XD2/W/ueHfyfmgIIuSZ
|
30
|
+
WJKJIF10xsbjyXJQ+mrQs0tzXDs/Yn9l4Oo1cXQEDhpbB8LCEKbaFX1oI2T7khdE
|
31
|
+
aa1jsm4XBcMFTnaitOL7bE4qEaSAGmg7fUMzjQCiNG4LwU9OudnwddhkCPrw3acQ
|
32
|
+
hu/4XC6ZsoEaSf04/bMGmzLihdiAuZ1oIIxwjH6DLvZpl1efO4k/odqjMu1tglvJ
|
33
|
+
ZeYYXkxYcW7O+vjXfAhesp8XXrtLJTtkCJ6ZOqpOoA9DuBmumBZO9tCdwNmTU2CV
|
34
|
+
tYMTEZGU9+qhQNvKkbdO4Xru3sJTCCv8Nvt8bVKQuIdftfDbzh810HF2BdcyJJeT
|
35
|
+
MrrH8cS6bqJRPQqEL1FsPmXfQpp86RvPSr0WqNSRnYEUCmqL0l2pYrXdPAyBLcji
|
36
|
+
X1jPyhH0sl/QdPdaUnsigze+
|
37
37
|
-----END CERTIFICATE-----
|
38
|
-
date:
|
38
|
+
date: 2022-01-18 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.5
|
50
50
|
type: :runtime
|
51
51
|
prerelease: false
|
52
52
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -56,47 +56,47 @@ dependencies:
|
|
56
56
|
version: '0.4'
|
57
57
|
- - ">="
|
58
58
|
- !ruby/object:Gem::Version
|
59
|
-
version: 0.4.
|
59
|
+
version: 0.4.5
|
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.6'
|
67
67
|
- - ">="
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: 0.
|
69
|
+
version: 0.6.1
|
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.6'
|
77
77
|
- - ">="
|
78
78
|
- !ruby/object:Gem::Version
|
79
|
-
version: 0.
|
79
|
+
version: 0.6.1
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: mymedia_ftp
|
82
82
|
requirement: !ruby/object:Gem::Requirement
|
83
83
|
requirements:
|
84
|
-
- - ">="
|
85
|
-
- !ruby/object:Gem::Version
|
86
|
-
version: 0.3.0
|
87
84
|
- - "~>"
|
88
85
|
- !ruby/object:Gem::Version
|
89
86
|
version: '0.3'
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: 0.3.3
|
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.3.0
|
97
94
|
- - "~>"
|
98
95
|
- !ruby/object:Gem::Version
|
99
96
|
version: '0.3'
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: 0.3.3
|
100
100
|
- !ruby/object:Gem::Dependency
|
101
101
|
name: remote_dwsregistry
|
102
102
|
requirement: !ruby/object:Gem::Requirement
|
@@ -138,7 +138,7 @@ dependencies:
|
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: '0.2'
|
140
140
|
description:
|
141
|
-
email:
|
141
|
+
email: digital.robertson@gmail.com
|
142
142
|
executables: []
|
143
143
|
extensions: []
|
144
144
|
extra_rdoc_files: []
|
@@ -163,7 +163,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
163
163
|
- !ruby/object:Gem::Version
|
164
164
|
version: '0'
|
165
165
|
requirements: []
|
166
|
-
|
166
|
+
rubyforge_project:
|
167
|
+
rubygems_version: 2.7.10
|
167
168
|
signing_key:
|
168
169
|
specification_version: 4
|
169
170
|
summary: Helpful library for primarily reading the contents of a file either from
|
metadata.gz.sig
CHANGED
Binary file
|