rxfhelper 1.1.3 → 1.2.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.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. checksums.yaml.gz.sig +0 -0
  3. data/lib/rxfhelper.rb +204 -163
  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: 15e51d65e2c274288df6b6c790800fba692215ad63c114c9c0243eb0b0e913ab
4
- data.tar.gz: e39a926abe5b4930743c8dde084d5b06990383e26f8c0f84145c735783c3ce7d
3
+ metadata.gz: 8b138d1576463c9bba8e0d18b64e7be0734f2df074854f94fbb4f0efa109d768
4
+ data.tar.gz: 8b66c19d007599ef84ba0dc2a361e92d93565625c5b1608b10c84d2abc204291
5
5
  SHA512:
6
- metadata.gz: 9269bde13f6557dd9a8b03ccb56b5062d0cba79447cc68560b4cbf6328fc7476ee2d583605837a86498221ab213c1986dc91438699fe5f54c06c709d65255db8
7
- data.tar.gz: c656ea9a5646cf97072a4f49e777a6c10a98a16bf50c99257aab2d9c63f2ee8eebb27d2a2650f48b9657307a0676540bb7b6a6e6a3e3227247485f9d5cf8e004
6
+ metadata.gz: 75e3dc8373f2571a4222a7992c1490f9fbdfa41ceb920aeb57d12fa5f501f438991ee685316ecab6b31766a7db7d5f102e2d74c7dabb7c9406a3bf41cbbc02ab
7
+ data.tar.gz: 55b81edb3b58deba0e3148cc2ce314fc45825fed75f5e79951aee77f80593b3eab82552b898fac3e334f9ff69ac5996a65da6e9d78d5cb6d38b86987be063c4b
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'
@@ -11,19 +12,28 @@ require 'remote_dwsregistry'
11
12
 
12
13
 
13
14
 
14
- # Setup: Add a local DNS entry called *reg.lookup* if you are planning on
15
+ # Setup: Add a local DNS entry called *reg.lookup* if you are planning on
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.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
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,46 @@ 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
-
141
- def self.cp(s1, s2)
142
-
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
+
165
+ def self.cp(s1, s2, debug: false)
166
+
167
+ puts 'inside RXFHelper.cp' if debug
168
+
143
169
  found = [s1,s2].grep /^\w+:\/\//
144
-
145
- if found then
146
-
170
+ puts 'found: ' + found.inspect if debug
171
+
172
+ if found.any? then
173
+
147
174
  case found.first[/^\w+(?=:\/\/)/].to_sym
148
175
 
149
176
  when :dfs
@@ -151,18 +178,18 @@ class RXFHelper
151
178
  when :ftp
152
179
  MyMediaFTP.cp s1, s2
153
180
  else
154
-
155
- end
156
-
181
+
182
+ end
183
+
157
184
  else
158
-
185
+
159
186
  FileUtils.cp s1, s2
160
-
187
+
161
188
  end
162
189
  end
163
-
190
+
164
191
  def self.chdir(x)
165
-
192
+
166
193
  if x[/^file:\/\//] or File.exists?(File.dirname(x)) then
167
194
  @fs = :local
168
195
  FileUtils.chdir x
@@ -170,32 +197,42 @@ class RXFHelper
170
197
  @fs = :dfs
171
198
  DfsFile.chdir x
172
199
  end
173
-
200
+
174
201
  end
175
-
176
- def self.get(x)
177
202
 
178
- raise RXFHelperException, 'nil found, expected a string' if x.nil?
179
-
203
+ def self.get(x)
204
+
205
+ raise RXFHelperException, 'nil found, expected a string' if x.nil?
206
+
180
207
  if x[/^rse:\/\//] then
181
-
208
+
182
209
  RSC.new.get x
183
-
210
+
184
211
  elsif x[/^reg:\/\//] then
185
-
212
+
186
213
  r = DRbRegClient.new.get(x)
187
214
  r.is_a?(Rexle::Element::Value) ? r.to_s : r
188
-
215
+
189
216
  else
190
217
  [x, :unknown]
191
218
  end
192
219
 
193
220
  end
194
-
221
+
222
+ def self.glob(s)
223
+
224
+ if s[/^dfs:\/\//] then
225
+ DfsFile.glob(s)
226
+ else
227
+ Dir.glob(s)
228
+ end
229
+
230
+ end
231
+
195
232
  def self.ls(x='*')
196
-
233
+
197
234
  return Dir[x] if File.exists?(File.dirname(x))
198
-
235
+
199
236
  case x[/^\w+(?=:\/\/)/].to_sym
200
237
  when :file
201
238
  Dir[x]
@@ -204,127 +241,131 @@ class RXFHelper
204
241
  when :ftp
205
242
  MyMediaFTP.ls x
206
243
  else
207
-
208
- end
209
-
244
+
245
+ end
246
+
210
247
  end
211
-
248
+
212
249
  def self.mkdir(x)
213
-
250
+
214
251
  if x[/^file:\/\//] or File.exists?(File.dirname(x)) then
215
252
  FileUtils.mkdir x
216
253
  elsif x[/^dfs:\/\//]
217
254
  DfsFile.mkdir x
218
255
  end
219
-
256
+
220
257
  end
221
-
258
+
222
259
  def self.mkdir_p(x)
223
-
260
+
224
261
  if x[/^dfs:\/\//] or @fs == :dfs then
225
262
  DfsFile.mkdir_p x
226
263
  else
227
- FileUtils.mkdir_p x
264
+ FileUtils.mkdir_p x
228
265
  end
229
-
266
+
230
267
  end
231
-
268
+
232
269
  def self.mv(s1, s2)
233
270
  DfsFile.mv(s1, s2)
234
- end
235
-
271
+ end
272
+
236
273
  # used by self.read
237
- #
274
+ #
238
275
  def self.objectize(contents)
239
-
276
+
240
277
  doctype = contents.lines.first[/(?<=^<\?)\w+/]
241
278
  reg = RemoteDwsRegistry.new domain: 'reg.lookup', port: '9292'
242
279
  r = reg.get_key 'hkey_gems/doctype/' + doctype
243
-
280
+
244
281
  return contents unless r
245
282
 
246
283
  require r.text('require')
247
-
284
+
248
285
  obj = Object.const_get(r.text('class')).new
249
286
  obj.import contents
250
- obj
287
+ obj
251
288
  end
252
-
289
+
253
290
  def self.pwd()
254
-
291
+
255
292
  DfsFile.pwd
256
-
257
- end
258
-
259
- def self.read(x, h={})
260
-
293
+
294
+ end
295
+
296
+ def self.read(x, h={})
297
+
261
298
  opt = {debug: false, auto: false}.merge(h)
262
-
299
+
263
300
  debug = opt[:debug]
264
301
 
265
302
  puts 'x: ' + x.inspect if opt[:debug]
266
303
  raise RXFHelperException, 'nil found, expected a string' if x.nil?
267
-
304
+
268
305
  if x.class.to_s =~ /Rexle$/ then
269
-
306
+
270
307
  [x.xml, :rexle]
271
-
308
+
272
309
  elsif x.strip[/^<(\?xml|[^\?])/] then
273
-
310
+
274
311
  [x, :xml]
275
-
312
+
276
313
  elsif x.lines.length == 1 then
277
-
314
+
278
315
  puts 'x.lines == 1'.info if debug
279
-
316
+
280
317
  if x[/^https?:\/\//] then
281
-
318
+
282
319
  puts 'before GPDRequest'.info if debug
283
-
284
- r = GPDRequest.new(opt[:username], opt[:password]).get(x)
285
-
320
+
321
+ r = if opt[:username] and opt[:password] then
322
+ GPDRequest.new(opt[:username], opt[:password]).get(x)
323
+ else
324
+ response = RestClient.get(x)
325
+ end
326
+
286
327
  case r.code
287
- when '404'
328
+ when '404'
288
329
  raise(RXFHelperException, "404 %s not found" % x)
289
- when '401'
290
- raise(RXFHelperException, "401 %s unauthorized access" % x)
330
+ when '401'
331
+ raise(RXFHelperException, "401 %s unauthorized access" % x)
291
332
  end
292
-
333
+
293
334
  obj = opt[:auto] ? objectize(r.body) : r.body
294
-
335
+
295
336
  [obj, :url]
296
-
337
+
297
338
  elsif x[/^dfs:\/\//] then
298
-
339
+
299
340
  r = DfsFile.read(x)
300
- [opt[:auto] ? objectize(r) : r, :dfs]
301
-
341
+ [opt[:auto] ? objectize(r) : r, :dfs]
342
+
302
343
  elsif x[/^ftp:\/\//] then
303
-
304
- [MyMediaFTP.read(x), :ftp]
305
-
344
+
345
+ [MyMediaFTP.read(x), :ftp]
346
+
306
347
  elsif x[/^rse:\/\//] then
307
-
348
+
308
349
  [RSC.new.get(x), :rse]
309
-
350
+
310
351
  elsif x[/^reg:\/\//] then
311
-
312
- r = DRbRegClient.new.get(x)
352
+
353
+ r = DRbRegClient.new.get(x)
313
354
  [r.is_a?(Rexle::Element::Value) ? r.to_s : r, :reg]
314
-
355
+
315
356
  elsif x[/^file:\/\//] or File.exists?(x) then
316
-
357
+
317
358
  puts 'RXFHelper.read before File.read' if opt[:debug]
318
359
  contents = File.read(File.expand_path(x.sub(%r{^file://}, '')))
319
-
360
+
320
361
  puts 'contents2: ' + contents.inspect if opt[:debug]
321
-
362
+
322
363
  puts 'opt: ' + opt.inspect if opt[:debug]
323
-
364
+
324
365
  obj = opt[:auto] ? objectize(contents) : contents
325
-
366
+
326
367
  [obj, :file]
327
-
368
+
328
369
  elsif x =~ /\s/
329
370
  [x, :text]
330
371
  elsif DfsFile.exists?(x)
@@ -332,73 +373,73 @@ class RXFHelper
332
373
  else
333
374
  [x, :unknown]
334
375
  end
335
-
376
+
336
377
  else
337
378
 
338
379
  [x, :unknown]
339
380
  end
340
381
  end
341
-
382
+
342
383
  def self.rm(filename)
343
-
384
+
344
385
  case filename[/^\w+(?=:\/\/)/].to_sym
345
386
  when :dfs
346
387
  DfsFile.rm filename
347
388
  when :ftp
348
- MyMediaFTP.rm filename
389
+ MyMediaFTP.rm filename
349
390
  else
350
-
351
- end
352
-
391
+
392
+ end
393
+
353
394
  end
354
-
395
+
355
396
  def self.write(location, s=nil)
356
-
397
+
357
398
  case location
358
399
  when /^dfs:\/\//
359
-
400
+
360
401
  DfsFile.write location, s
361
-
402
+
362
403
  when /^ftp:\/\// then
363
-
404
+
364
405
  MyMediaFTP.write location, s
365
-
406
+
366
407
  when /^rse:\/\//
367
-
408
+
368
409
  RSC.new.post(location, s)
369
410
 
370
411
  when /^reg:\/\//
371
-
412
+
372
413
  DRbRegClient.new.set(location, s)
373
-
414
+
374
415
  else
375
-
416
+
376
417
  if DfsFile.exists?(File.dirname(location)) then
377
418
  DfsFile.write location, s
378
419
  else
379
420
  File.write(location, s)
380
421
  end
381
-
422
+
382
423
  end
383
-
424
+
384
425
  end
385
-
426
+
386
427
  def self.writeable?(source)
387
428
 
388
429
  return false if source.lines.length > 1
389
-
430
+
390
431
  if not source =~ /:\/\// then
391
-
432
+
392
433
  return true if File.exists? source
393
-
434
+
394
435
  else
395
-
436
+
396
437
  return true if source =~ /^dfs:/
397
-
438
+
398
439
  end
399
-
440
+
400
441
  return false
401
- end
442
+ end
402
443
 
403
444
  def self.absolute_url(page_url, item_location)
404
445
 
@@ -413,42 +454,42 @@ class RXFHelper
413
454
  else
414
455
  File.join page_url[/.*\//], item_location
415
456
  end
416
- end
417
-
418
- def self.post(uri, x=nil)
457
+ end
458
+
459
+ def self.post(uri, x=nil)
460
+
461
+ raise RXFHelperException, 'nil found, expected a string' if uri.nil?
419
462
 
420
- raise RXFHelperException, 'nil found, expected a string' if uri.nil?
421
-
422
463
  if uri[/^rse:\/\//] then
423
464
  RSC.new.post uri, x
424
-
465
+
425
466
  elsif uri[/^reg:\/\//]
426
-
427
- DRbRegClient.new.set(uri, x)
467
+
468
+ DRbRegClient.new.set(uri, x)
428
469
  else
429
470
  [uri, :unknown]
430
471
  end
431
472
 
432
473
  end
433
-
434
- def self.set(uri, x=nil)
435
474
 
436
- raise RXFHelperException, 'nil found, expected a string' if uri.nil?
475
+ def self.set(uri, x=nil)
476
+
477
+ raise RXFHelperException, 'nil found, expected a string' if uri.nil?
437
478
  puts 'uri: ' + uri.inspect
438
-
479
+
439
480
  if uri[/^rse:\/\//] then
440
481
  RSC.new.post uri, x
441
-
482
+
442
483
  elsif uri[/^reg:\/\//]
443
-
444
- DRbRegClient.new.set(uri, x)
484
+
485
+ DRbRegClient.new.set(uri, x)
445
486
  else
446
487
  [uri, :unknown]
447
488
  end
448
489
 
449
- end
490
+ end
450
491
 
451
492
  def self.zip(filename, a)
452
493
  DfsFile.zip(filename, a)
453
- end
494
+ end
454
495
  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.3
4
+ version: 1.2.2
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-23 00:00:00.000000000 Z
38
+ date: 2022-02-04 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