rxfhelper 1.1.1 → 1.2.0

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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/lib/rxfhelper.rb +201 -160
  4. data.tar.gz.sig +0 -0
  5. metadata +59 -38
  6. metadata.gz.sig +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f9b53a2bc741320bf27a06159c47b922c4c0f8b3d58996425e4929ba4b14410
4
- data.tar.gz: 68b6743cef0e1dd85a3ac152a5f2f0010eecb5c2ffb8254237ea46941e8f94cb
3
+ metadata.gz: 0b5bce02c273b620b22c57b8192108217b65dbf4c217aa9e364df125a460b110
4
+ data.tar.gz: 24b8c9d64daf26dce1892ae54cfd2922de66550102656ef7094af606914fbc5e
5
5
  SHA512:
6
- metadata.gz: 2c4933309436bdfd524918b59d8dac011d0d980319daffb5b412eb600a2246a94ff3447bb0a4b4c474bdb2bf584374f942ea98d7674db909512aeb9bed28ff3b
7
- data.tar.gz: f053f1e95ae0a4b0c55d877b375a7811a4366e955dbab3cd81bbf07c4c21e12e8934bd3d69e30ee699674c529baae96df37de30f0f6dca328427e64e19df21c7
6
+ metadata.gz: 61441bfad8795084bccf21f8ff5f18b79d3b9800712ee1b25559edb4b6c5b260d708fd211f0c18c3f2976e7ad8cefc55b39cd960ad18c027552d791bf63b3c88
7
+ data.tar.gz: 85499a15be83ef2094c9fa75252b6cae89a2bc4c0c9ac3ea10ce9214a140646f87338b4c239c30bf51c2bff5e3bb3032a82102be232c3c49021f24264ca5e720
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.cp(s, s2) RXFHelper.cp(s, s2) end
95
- def self.ls(s) RXFHelper.ls(s) end
96
- def self.mkdir(s) RXFHelper.mkdir(s) end
97
- def self.mkdir_p(s) RXFHelper.mkdir_p(s) end
98
- def self.mv(s, s2) RXFHelper.mv(s, s2) end
99
- def self.pwd() RXFHelper.pwd() end
100
- def self.read(x) RXFHelper.read(x).first end
101
- def self.rm(s) RXFHelper.rm(s) end
102
- def self.write(x, s) RXFHelper.write(x, s) end
103
- def self.zip(s, a) RXFHelper.zip(s, a) end
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,33 +193,43 @@ 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
- raise RXFHelperException, 'nil found, expected a string' if x.nil?
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
-
199
- case filename[/^\w+(?=:\/\/)/].to_sym
231
+
232
+ case x[/^\w+(?=:\/\/)/].to_sym
200
233
  when :file
201
234
  Dir[x]
202
235
  when :dfs
@@ -204,127 +237,131 @@ 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
-
280
- if x[/\bhttps?:\/\//] then
281
-
312
+
313
+ if x[/^https?:\/\//] then
314
+
282
315
  puts 'before GPDRequest'.info if debug
283
-
284
- r = GPDRequest.new(opt[:username], opt[:password]).get(x)
285
-
316
+
317
+ r = if opt[:username] and opt[:password] then
318
+ GPDRequest.new(opt[:username], opt[:password]).get(x)
319
+ else
320
+ response = RestClient.get(x)
321
+ end
322
+
286
323
  case r.code
287
- when '404'
324
+ when '404'
288
325
  raise(RXFHelperException, "404 %s not found" % x)
289
- when '401'
290
- raise(RXFHelperException, "401 %s unauthorized access" % x)
326
+ when '401'
327
+ raise(RXFHelperException, "401 %s unauthorized access" % x)
291
328
  end
292
-
329
+
293
330
  obj = opt[:auto] ? objectize(r.body) : r.body
294
-
331
+
295
332
  [obj, :url]
296
-
333
+
297
334
  elsif x[/^dfs:\/\//] then
298
-
335
+
299
336
  r = DfsFile.read(x)
300
- [opt[:auto] ? objectize(r) : r, :dfs]
301
-
337
+ [opt[:auto] ? objectize(r) : r, :dfs]
338
+
302
339
  elsif x[/^ftp:\/\//] then
303
-
304
- [MyMediaFTP.read(x), :ftp]
305
-
340
+
341
+ [MyMediaFTP.read(x), :ftp]
342
+
306
343
  elsif x[/^rse:\/\//] then
307
-
344
+
308
345
  [RSC.new.get(x), :rse]
309
-
346
+
310
347
  elsif x[/^reg:\/\//] then
311
-
312
- r = DRbRegClient.new.get(x)
348
+
349
+ r = DRbRegClient.new.get(x)
313
350
  [r.is_a?(Rexle::Element::Value) ? r.to_s : r, :reg]
314
-
351
+
315
352
  elsif x[/^file:\/\//] or File.exists?(x) then
316
-
353
+
317
354
  puts 'RXFHelper.read before File.read' if opt[:debug]
318
355
  contents = File.read(File.expand_path(x.sub(%r{^file://}, '')))
319
-
356
+
320
357
  puts 'contents2: ' + contents.inspect if opt[:debug]
321
-
358
+
322
359
  puts 'opt: ' + opt.inspect if opt[:debug]
323
-
360
+
324
361
  obj = opt[:auto] ? objectize(contents) : contents
325
-
362
+
326
363
  [obj, :file]
327
-
364
+
328
365
  elsif x =~ /\s/
329
366
  [x, :text]
330
367
  elsif DfsFile.exists?(x)
@@ -332,69 +369,73 @@ class RXFHelper
332
369
  else
333
370
  [x, :unknown]
334
371
  end
335
-
372
+
336
373
  else
337
374
 
338
375
  [x, :unknown]
339
376
  end
340
377
  end
341
-
378
+
342
379
  def self.rm(filename)
343
-
380
+
344
381
  case filename[/^\w+(?=:\/\/)/].to_sym
345
382
  when :dfs
346
383
  DfsFile.rm filename
347
384
  when :ftp
348
- MyMediaFTP.rm filename
385
+ MyMediaFTP.rm filename
349
386
  else
350
-
351
- end
352
-
387
+
388
+ end
389
+
353
390
  end
354
-
391
+
355
392
  def self.write(location, s=nil)
356
-
393
+
357
394
  case location
358
395
  when /^dfs:\/\//
359
-
396
+
360
397
  DfsFile.write location, s
361
-
398
+
399
+ when /^ftp:\/\// then
400
+
401
+ MyMediaFTP.write location, s
402
+
362
403
  when /^rse:\/\//
363
-
404
+
364
405
  RSC.new.post(location, s)
365
406
 
366
407
  when /^reg:\/\//
367
-
408
+
368
409
  DRbRegClient.new.set(location, s)
369
-
410
+
370
411
  else
371
-
412
+
372
413
  if DfsFile.exists?(File.dirname(location)) then
373
414
  DfsFile.write location, s
374
415
  else
375
416
  File.write(location, s)
376
417
  end
377
-
418
+
378
419
  end
379
-
420
+
380
421
  end
381
-
422
+
382
423
  def self.writeable?(source)
383
424
 
384
425
  return false if source.lines.length > 1
385
-
426
+
386
427
  if not source =~ /:\/\// then
387
-
428
+
388
429
  return true if File.exists? source
389
-
430
+
390
431
  else
391
-
432
+
392
433
  return true if source =~ /^dfs:/
393
-
434
+
394
435
  end
395
-
436
+
396
437
  return false
397
- end
438
+ end
398
439
 
399
440
  def self.absolute_url(page_url, item_location)
400
441
 
@@ -409,42 +450,42 @@ class RXFHelper
409
450
  else
410
451
  File.join page_url[/.*\//], item_location
411
452
  end
412
- end
413
-
414
- def self.post(uri, x=nil)
453
+ end
454
+
455
+ def self.post(uri, x=nil)
456
+
457
+ raise RXFHelperException, 'nil found, expected a string' if uri.nil?
415
458
 
416
- raise RXFHelperException, 'nil found, expected a string' if uri.nil?
417
-
418
459
  if uri[/^rse:\/\//] then
419
460
  RSC.new.post uri, x
420
-
461
+
421
462
  elsif uri[/^reg:\/\//]
422
-
423
- DRbRegClient.new.set(uri, x)
463
+
464
+ DRbRegClient.new.set(uri, x)
424
465
  else
425
466
  [uri, :unknown]
426
467
  end
427
468
 
428
469
  end
429
-
430
- def self.set(uri, x=nil)
431
470
 
432
- raise RXFHelperException, 'nil found, expected a string' if uri.nil?
471
+ def self.set(uri, x=nil)
472
+
473
+ raise RXFHelperException, 'nil found, expected a string' if uri.nil?
433
474
  puts 'uri: ' + uri.inspect
434
-
475
+
435
476
  if uri[/^rse:\/\//] then
436
477
  RSC.new.post uri, x
437
-
478
+
438
479
  elsif uri[/^reg:\/\//]
439
-
440
- DRbRegClient.new.set(uri, x)
480
+
481
+ DRbRegClient.new.set(uri, x)
441
482
  else
442
483
  [uri, :unknown]
443
484
  end
444
485
 
445
- end
486
+ end
446
487
 
447
488
  def self.zip(filename, a)
448
489
  DfsFile.zip(filename, a)
449
- end
490
+ end
450
491
  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.1
4
+ version: 1.2.0
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
- 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
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
- 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
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: 2020-09-15 00:00:00.000000000 Z
38
+ date: 2022-01-24 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.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.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.5'
66
+ version: '0.6'
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: 0.5.2
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.5'
76
+ version: '0.6'
77
77
  - - ">="
78
78
  - !ruby/object:Gem::Version
79
- version: 0.5.2
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: james@jamesrobertson.eu
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
- rubygems_version: 3.0.3
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