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