mymedia 0.5.4 → 0.5.6

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/mymedia.rb +122 -104
  4. data.tar.gz.sig +0 -0
  5. metadata +30 -29
  6. metadata.gz.sig +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: '0549b56450b11fe46c8c2b51e9d77258936651dad8a6768fc97a8dc5c6aaac26'
4
- data.tar.gz: 39526f96af64fc8809b27d8debb6ad00c98ac559d9530d2cab79dd0bed832420
3
+ metadata.gz: a9017547d1a397550cf5ca9814c06c40dfbf124788d2f70886ed140cd522de5b
4
+ data.tar.gz: a00880daf1a062ab77d0680caf230cf68f774cba51c658bbec2ebd700038d20a
5
5
  SHA512:
6
- metadata.gz: 815295d51895458924a515ae171d7f8886585c2b957de9c511d290a32c4b72e89758bb30adc2bd7320291c3a73a2c0dbd13aedd8e42b04787c2f0b5c2fea6c53
7
- data.tar.gz: 1b9ddf1205599269266c5fc544bbaf6ed4953358c3555048c77a21d864fe9cd8a500b4d08f3eda4d474cb0653d1ca8c6d11eb851760c1d62b272476d8c93100d
6
+ metadata.gz: 64b2f5b76497d425093526fdd9da114211c3389dc6df4f0eb12344f146e618620f2e42c3621c2008e8b57dcdf44f7f970ed51720e6789b168824e53d7b04e149
7
+ data.tar.gz: c760bdf0090e8be9980176da22599e8c75e2efa19394b4a492d53f84e9ca8a2a58b1ea6087280397ab4b0f256fc3f7ee231fa5c4fa9a695fa6a59d5fd3de1341
checksums.yaml.gz.sig CHANGED
Binary file
data/lib/mymedia.rb CHANGED
@@ -18,8 +18,8 @@ module MyMedia
18
18
 
19
19
  class MyMediaPublisherException < Exception
20
20
  end
21
-
22
-
21
+
22
+
23
23
  class Publisher
24
24
  include RXFReadWriteModule
25
25
 
@@ -27,12 +27,12 @@ module MyMedia
27
27
  @index_page = true
28
28
  @opts = opts
29
29
  end
30
-
30
+
31
31
  protected
32
-
32
+
33
33
  def publish_dynarex(dynarex_filepath='', \
34
34
  record={title: '',url: '', raw_url: ''}, options={})
35
-
35
+
36
36
  opt = {id: nil, rss: false}.merge(options)
37
37
 
38
38
  dynarex = if FileX.exists? dynarex_filepath then
@@ -45,7 +45,7 @@ module MyMedia
45
45
  dynarex.save dynarex_filepath
46
46
  publish_html(dynarex_filepath) if @index_page == true
47
47
 
48
-
48
+
49
49
  if opt[:rss] == true then
50
50
 
51
51
  dynarex.xslt_schema = dynarex.summary[:xslt_schema]
@@ -57,19 +57,19 @@ module MyMedia
57
57
 
58
58
  def publish_html(filepath)
59
59
 
60
- path2 = File.dirname(filepath)
60
+ path2 = File.dirname(filepath)
61
61
  template_path = File.join path2, 'index-template.html'
62
62
 
63
- return unless @index_page == true
63
+ return unless @index_page == true
64
64
  raise MyMediaPublisherException, \
65
65
  "template path: #{template_path} not found" unless \
66
66
  FileX.exists?(template_path)
67
- =begin jr 040916
67
+ =begin jr 040916
68
68
  dataisland = DataIsland.new(template_path, @opts)
69
69
 
70
70
  File.open(path2 + '/index.html','w'){|f| f.write dataisland.html_doc.xml pretty: true}
71
- =end
72
- end
71
+ =end
72
+ end
73
73
 
74
74
  def publish_dxlite(dynarex_filepath='', record={title: '',url: ''})
75
75
 
@@ -85,12 +85,12 @@ module MyMedia
85
85
 
86
86
  def send_message(topic: @sps[:default_subscriber], msg: '')
87
87
 
88
- fqm = "%s: %s" % [topic, msg]
88
+ fqm = "%s: %s" % [topic, msg]
89
89
 
90
90
  SPSPub.notice fqm, address: @sps[:address]
91
91
  sleep 0.3
92
- end
93
-
92
+ end
93
+
94
94
  end
95
95
 
96
96
  module IndexReader
@@ -98,7 +98,7 @@ module MyMedia
98
98
 
99
99
  def browse(startswith=nil)
100
100
 
101
- json_filepath = "%s/%s/dynarex.json" % [@home, @public_type]
101
+ json_filepath = "%s/%s/%s/dynarex.json" % [@home, @www, @public_type]
102
102
 
103
103
  if FileX.exists? json_filepath then
104
104
 
@@ -168,31 +168,47 @@ module MyMedia
168
168
  end
169
169
 
170
170
  end
171
+
172
+ def find_sourcefile(id)
173
+
174
+ json_filepath = "%s/%s/dynarex.json" % [@home, @public_type]
175
+
176
+ if FileX.exists? json_filepath then
177
+
178
+ dx = DxLite.new(json_filepath)
179
+ rx = dx.find_by_id(id)
180
+ Kvx.new(@home + rx.meta).file
181
+
182
+ end
183
+
184
+ end
171
185
  end
172
186
 
173
187
  class BaseException < Exception
174
188
  end
175
-
189
+
176
190
  class Base < Publisher
177
191
  include RXFileIOModule
178
192
 
179
- attr_reader :to_s
193
+ attr_reader :to_s, :destination
180
194
 
181
195
  def initialize(media_type: 'blog', public_type: media_type,
182
- ext: 'txt', config: nil, log: nil, debug: false)
196
+ ext: 'txt', config: nil, log: nil, now: Time.now,
197
+ debug: false)
183
198
 
184
- super()
199
+ super()
185
200
 
186
- @schema = 'posts/post(title, url, raw_url)'
201
+ @now = now
202
+ @schema = 'posts/post(title, url, raw_url)'
187
203
 
188
- raise BaseException, "no config found" if config.nil?
204
+ raise BaseException, "no config found" unless config
189
205
 
190
206
  c = SimpleConfig.new(config).to_h
191
-
207
+
192
208
  @home = c[:home]
193
209
  puts '@home: ' + @home.inspect if @debug
194
210
  @media_src = "%s/media/%s" % [@home, media_type]
195
- @website = c[:website]
211
+ @website = c[:website]
196
212
 
197
213
  @dynamic_website = c[:dynamic_website]
198
214
  @www = c[:www]
@@ -200,33 +216,33 @@ module MyMedia
200
216
 
201
217
  @sps = c[:sps]
202
218
  @omit_html_ext = c[:omit_html_ext]
203
-
219
+
204
220
  @log = log
205
221
 
206
222
 
207
223
  @media_type = media_type
208
224
  @public_type = public_type ||= @media_type
209
-
225
+
210
226
  @xslt_schema = 'channel[title:title,description:desc]/' + \
211
227
  'item(title:title,link:url)'
212
228
  @ext = ext
213
229
  @rss = false
214
230
  @debug = debug
215
-
231
+
216
232
  DirX.chdir @home
217
233
 
218
234
  end
219
-
235
+
220
236
  def add_feed_item(raw_msg, record, options={})
221
-
222
- dynarex_filepath = File.join([@home, @public_type, 'dynarex.xml'])
223
- id = Increment.update(File.join([@home, @public_type, 'counter.txt']))
237
+
238
+ dynarex_filepath = File.join([@home, @public_type, 'dynarex.xml'])
239
+ id = Increment.update(File.join([@home, @public_type, 'counter.txt']))
224
240
  static_url = @static_baseurl + id
225
241
  record[:uri] = static_url
226
-
227
- publish_dynarex(dynarex_filepath, record, {id: id}.merge(options))
228
- publish_timeline(raw_msg, static_url)
229
- publish_html(@home + '/index.html')
242
+
243
+ publish_dynarex(dynarex_filepath, record, {id: id}.merge(options))
244
+ publish_timeline(raw_msg, static_url)
245
+ publish_html(@home + '/index.html')
230
246
  end
231
247
 
232
248
  def auto_copy_publish(raw_msg='', &blk)
@@ -246,7 +262,7 @@ module MyMedia
246
262
  end
247
263
 
248
264
  end
249
-
265
+
250
266
  def basename(raw_s1, raw_s2)
251
267
 
252
268
  s1 = raw_s1.sub(/dfs:\/\/[^\/]+/,'')
@@ -254,38 +270,40 @@ module MyMedia
254
270
 
255
271
  (s2.split('/') - s1.split('/')).join('/')
256
272
 
257
- end
258
-
273
+ end
274
+
259
275
  def copy_publish(filename, raw_msg='', &blk)
260
276
  file_publish(filename, raw_msg)
261
277
  end
262
-
278
+
263
279
 
264
280
  private
281
+
282
+ def file_publish(src_path, raw_msg='', sps: true)
265
283
 
266
- def file_publish(src_path, raw_msg='')
267
-
268
- #raise @logger.debug("source file '%s' not found" % src_path) unless File.exists? src_path
269
284
  ext = File.extname(src_path)
270
285
  @target_ext ||= ext
271
-
286
+
272
287
  public_path = "%s/%s/%shrs%s" % [@public_type, \
273
- Time.now.strftime('%Y/%b/%d').downcase, Time.now.strftime('%H%M'),
288
+ @now.strftime('%Y/%b/%d').downcase, @now.strftime('%H%M'),
274
289
  @target_ext]
275
290
 
276
291
  public_path2 = "%s/%s/%shrs%s%s" % [@public_type, \
277
- Time.now.strftime('%Y/%b/%d').downcase, Time.now.strftime('%H%M'),
278
- Time.now.strftime('%S%2N'), @target_ext]
279
-
280
- raw_destination = "%s/%s/%s" % [@home, 'r', public_path]
281
-
292
+ @now.strftime('%Y/%b/%d').downcase, @now.strftime('%H%M'),
293
+ @now.strftime('%S%2N'), @target_ext]
294
+
295
+ raw_destination = File.join(@home, @www, 'r', public_path)
296
+
282
297
  if FileX.exists? raw_destination then
283
- raw_destination = "%s/%s/%s" % [@home, 'r', public_path2]
298
+ raw_destination = File.join(@home, @www, 'r', public_path2)
284
299
  public_path = public_path2
285
300
  end
286
301
 
287
- destination = File.join(@home, public_path)
302
+ destination = File.join(@home, @www, public_path)
303
+ puts 'before raw_destination: ' + raw_destination.inspect if @debug
288
304
  FileX.mkdir_p File.dirname(raw_destination)
305
+
306
+ puts 'before destination: ' + destination.inspect if @debug
289
307
  FileX.mkdir_p File.dirname(destination)
290
308
 
291
309
  if @debug then
@@ -297,9 +315,9 @@ module MyMedia
297
315
 
298
316
  raw_msg = src_path[/([^\/]+)\.\w+$/,1] + ' ' + raw_msg if raw_msg[/^#/]
299
317
 
300
-
318
+
301
319
  if block_given? then
302
- raw_msg, target_url = yield(destination, raw_destination)
320
+ raw_msg, target_url = yield(destination, raw_destination)
303
321
  static_url = target_url
304
322
  else
305
323
 
@@ -319,22 +337,21 @@ module MyMedia
319
337
 
320
338
  end
321
339
 
322
- raw_msg = raw_msg.join if raw_msg.is_a? Array
340
+ raw_msg = raw_msg.join if raw_msg.is_a? Array
323
341
 
324
342
  static_filename = if raw_msg.to_s.length > 0 then
325
343
  normalize(raw_msg) + File.extname(destination)
326
344
  else
327
-
345
+
328
346
  basename(@media_src, src_path)
329
-
330
- end
331
-
347
+
348
+ end
349
+
332
350
  static_path = "%s/%s/%s" % [@public_type, \
333
- Time.now.strftime('%Y/%b/%d').downcase, static_filename]
334
-
335
- raw_static_destination = "%s/%s/%s" % [@home, 'r',static_path]
336
-
337
- static_destination = "%s/%s" % [@home, static_path]
351
+ @now.strftime('%Y/%b/%d').downcase, static_filename]
352
+
353
+ raw_static_destination = File.join(@home, @www, 'r',static_path)
354
+ static_destination = File.join(@home, @www, static_path)
338
355
 
339
356
  #FileUtils.mkdir_p File.dirname(static_destination)
340
357
 
@@ -351,7 +368,7 @@ module MyMedia
351
368
  if File.extname(static_destination) == '.html' then
352
369
 
353
370
  xmlfilepath = destination.sub('.html','.xml')
354
-
371
+
355
372
  if FileX.exists?(xmlfilepath) then
356
373
 
357
374
  FileX.cp xmlfilepath, static_destination.sub('.html','.xml')
@@ -363,40 +380,41 @@ module MyMedia
363
380
  end
364
381
 
365
382
  end
366
-
383
+
367
384
  target_url ||= "%s/%s" % [@website, public_path]
368
385
  static_url ||= "%s/%s" % [@website, static_path]
369
386
 
370
387
  msg = "%s %s" % [target_url, raw_msg ]
371
-
372
- sps_message = ['publish', @public_type,
388
+
389
+ sps_message = ['publish', @public_type,
373
390
  target_url, static_url, raw_msg]
374
391
 
375
- send_message(msg: sps_message.join(' '))
392
+ send_message(msg: sps_message.join(' ')) if sps
376
393
 
377
394
  static_url
378
-
395
+
379
396
  end
380
-
397
+
381
398
  def normalize(s)
382
399
 
383
- r = s.downcase.gsub(/\s#\w+/,'').strip.gsub(/\W/,'-').gsub(/-{2,}/,'-').gsub(/^-|-$/,'')
400
+ r = s.downcase.gsub(/\s#\w+/,'').strip.gsub(/\W/,'-').gsub(/-{2,}/,'-')\
401
+ .gsub(/^-|-$/,'')
384
402
  return s.scan(/#(\w+)/)[0..1].join('_').downcase if r.empty?
385
- return r
386
- end
403
+ return r
404
+ end
387
405
 
388
406
  end
389
-
390
-
407
+
408
+
391
409
  class FrontpageException < Exception
392
410
  end
393
-
411
+
394
412
  class Frontpage < Publisher
395
-
413
+
396
414
  def initialize(config: nil, public_type: '', rss: nil)
397
-
415
+
398
416
  raise FrontpageException, "no config found" if config.nil?
399
-
417
+
400
418
  c = SimpleConfig.new(config).to_h
401
419
 
402
420
  @home = c[:home]
@@ -405,56 +423,56 @@ module MyMedia
405
423
  @rss = rss
406
424
  @sps = c[:sps]
407
425
  @opts = {username: c[:username], password: c[:password]}
408
-
426
+
409
427
  end
428
+
429
+ def publish_frontpage(s='index.html')
410
430
 
411
- def publish_frontpage(s='index.html')
412
-
413
- publish_html(@home + '/' + s)
431
+ publish_html(@home + '/' + s)
414
432
  'frontpage published'
415
- end
416
-
433
+ end
417
434
 
435
+
418
436
  def publish_to_lists(record={}, public_type=nil)
419
-
437
+
420
438
  @log.info 'inside publish_to_lists' if @log
421
-
439
+
422
440
  @public_type = public_type if public_type
423
441
 
424
442
  raw_msg, static_url, target_url = \
425
443
  record[:title], record[:url], record[:static_url]
426
444
 
427
- dynarex_filepath = "%s/%s/dynarex.xml" % [@home, @public_type]
428
- raw_dynarex_filepath = "%s/r/%s/dynarex.xml" % [@home, @public_type]
445
+ dynarex_filepath = File.join(@home, @www, @public_type, 'dynarex.xml')
446
+ raw_dynarex_filepath = File.join(@home, @www, 'r', @public_type, 'dynarex.xml')
429
447
 
448
+ publish_dynarex(dynarex_filepath, record, {rss: @rss || false})
449
+ publish_dynarex(raw_dynarex_filepath, record, {rss: @rss || false})
430
450
 
431
- publish_dynarex(dynarex_filepath, record, {rss: @rss || false})
432
- publish_dynarex(raw_dynarex_filepath, record, {rss: @rss || false})
433
-
434
- publish_timeline(raw_msg, static_url, target_url)
451
+ publish_timeline(raw_msg, static_url, target_url)
435
452
  send_message(msg: 'publish_to_lists completed')
436
-
453
+
437
454
  end
438
455
 
439
-
456
+
440
457
  def publish_timeline(raw_msg, static_url, target_url='')
441
458
 
442
- timeline_filepath = "%s/timeline/dynarex.xml" % @home
443
- record = Dynarex.new(@home + '/dynarex/main-directory.xml').find_by_title(@public_type)
459
+ timeline_filepath = File.join(@home, @www, 'timeline', 'dynarex.xml')
460
+ main_dir = File.join(@home, @www, 'dynarex', 'main-directory.xml')
461
+ record = Dynarex.new(main_dir).find_by_title(@public_type)
444
462
 
445
463
  thumbnail, subject_url = record.thumbnail, record.url
446
-
464
+
447
465
  content = {
448
- title: raw_msg,
466
+ title: raw_msg,
449
467
  url: static_url,
450
- thumbnail: thumbnail,
451
- subject_url: subject_url,
452
- raw_url: target_url
468
+ thumbnail: thumbnail,
469
+ subject_url: subject_url,
470
+ raw_url: target_url
453
471
  }
472
+
473
+ publish_dynarex(timeline_filepath, content, rss: true)
454
474
 
455
- publish_dynarex(timeline_filepath, content, rss: true)
456
-
457
- end
475
+ end
458
476
 
459
477
  end
460
478
  end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mymedia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.4
4
+ version: 0.5.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Robertson
@@ -10,32 +10,33 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIEXjCCAsagAwIBAgIBATANBgkqhkiG9w0BAQsFADAsMSowKAYDVQQDDCFnZW1t
14
- YXN0ZXIvREM9amFtZXNyb2JlcnRzb24vREM9ZXUwHhcNMjIwMjAzMjE0MDM4WhcN
15
- MjMwMjAzMjE0MDM4WjAsMSowKAYDVQQDDCFnZW1tYXN0ZXIvREM9amFtZXNyb2Jl
16
- cnRzb24vREM9ZXUwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDLhnus
17
- EmCSf8Mh4kdpLThgpsLS0N/kupJ35qxUqlluM0Treka8rn+Xv+su5eGY7bwT1lis
18
- 4rNk+H/YxNqm+7JoleqcdygCSMJju75WILEAuPtaZJbIlHiwlboe2P1Q/Q0qjYV4
19
- 5Hod6xYAFzjx4NRTCfRwvFjyXrvUJK/CgUWgDLraQEM4iQTWpxp+oIDsQIV5DLn7
20
- wv4u+RKVrcHZkeu1r+vt/KBm9qNh2cK/kGw96tylW4/6sSTaPNNY9dvYx2Ee04jf
21
- GTuxXBqtyvDKOfQAI/sWQ5J94+uIppx2dDL3eSEYfl2V8CwWVZxx3dETJ8M1fG6M
22
- CMA+15zld92rCvGYsLh4jkZnyCt2l1O6IYMW/gAScwgzvlC01U2vV2P+8bwm17Un
23
- pWP2FbNiihwZD7mdyKbi8noCeWrompgX5+hJZumFlsqld5XhoaPwQB6VNgVCxtOG
24
- ZHXdP6MiTPhH0t6XVmRSMX+zEedaoL2Z2OxaBAM9abkOJ8kNtI3pqqVkQmkCAwEA
25
- AaOBijCBhzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUTUv11jAO
26
- mX0Ta1tkNdz9cHZLKZowJgYDVR0RBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
27
- c29uLmV1MCYGA1UdEgQfMB2BG2dlbW1hc3RlckBqYW1lc3JvYmVydHNvbi5ldTAN
28
- BgkqhkiG9w0BAQsFAAOCAYEARdXjjSCHczpSquJFR7p/1Xovom9aQAmp8aCgZJg4
29
- 9oln3FIyBnk3W/LTUJVGS5a3u8JcVMxLTEJqkUMrBVGa8AcJzsPEU8XAG9R2360z
30
- iZxVyGiFdi+DUOo++vjbiBRvgl2o3gKEwp8RPFj+OUemVDeFexBHKukDDdk7MJNp
31
- WmLLvRyAmB+grz7eMPFjTxfRcV4/6WHNS5MFdXZ0ZioAKUatCNYIpDS7NqnT/nhD
32
- CSEqt9HQknjKDK8LFS8Ostfbn0wZxYdh7Gxy6TKEh9dt0mMkIdzKxOJW70N+6bPP
33
- CDRYB4NTKybJ2XnbEbJsUBezXDF8p+dmOEhygIAcNrjY9OyorRiZD3m60O+UuqXx
34
- jumKCvffqUahjzaQRcW0r0OkF8v087BT7xUdq+K9Iza2Vuc3Qj2YxrFskE7gUhgB
35
- bL55NDdi8BFHkNVohRBak7aqxsw41LJKy3UTP+4TzU5vyluDJMiscK6JJFaM4JiS
36
- xtlAM0O5ZFe9QflatP+P8JnB
13
+ MIIEljCCAv6gAwIBAgIBATANBgkqhkiG9w0BAQsFADBIMRIwEAYDVQQDDAlnZW1t
14
+ YXN0ZXIxHjAcBgoJkiaJk/IsZAEZFg5qYW1lc3JvYmVydHNvbjESMBAGCgmSJomT
15
+ 8ixkARkWAmV1MB4XDTIzMDIyMjE4NTk1MFoXDTI0MDIyMjE4NTk1MFowSDESMBAG
16
+ A1UEAwwJZ2VtbWFzdGVyMR4wHAYKCZImiZPyLGQBGRYOamFtZXNyb2JlcnRzb24x
17
+ EjAQBgoJkiaJk/IsZAEZFgJldTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoC
18
+ ggGBAKA1cGKoDX7bTA9dtbjHRNKdTDV446tBLwevBBPFeSsIibVRYf8XmKeZcuIu
19
+ ZYcKaCBBFebaZGeFxx96zJUARg93CTF3AzKcelUkwHZKqDUmv7rHGZ2aGVqAeBUo
20
+ nXOTYkg0krKse5rhqvfd0L3/SsEPWoVNVIdbGlN9piASAreuTRp58ZrqyquaZPwj
21
+ qKrb8LLalBE5sPWF6cgUuUscbg9FLNSBPaW01HeD2XiVcLlT6jl0BgpW9nzKgwQw
22
+ 0GI8jU6mCTHnwzzmK3A/TgaNXxJtmoRnHZJ/GqnTe3QEgRACey6PTTI2v80LJ0iO
23
+ 6Y0uNLbxCCH4+NLsdigKImYParvE017VjsQt7/SUNL0gHhvtfC9X3Vy+25Rtpz9M
24
+ AHmMm1f1c9eanxkc+4uivKhkUKY1TI4eGL/CW/VkUJ+rScspqESUty21NGBWJIjZ
25
+ UhjbYh7HXoGZW7Q+qs3HZNSh5e9ZR6uS/Z89c5xliMGLSzGwvFlMsOTBKh7e+Li8
26
+ HW8qbQIDAQABo4GKMIGHMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
27
+ BBQO6GN9hFPUtZm9hXSHjrK0vDYuyTAmBgNVHREEHzAdgRtnZW1tYXN0ZXJAamFt
28
+ ZXNyb2JlcnRzb24uZXUwJgYDVR0SBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
29
+ c29uLmV1MA0GCSqGSIb3DQEBCwUAA4IBgQBi7zH6cYWgeoNoOD/Az2Q1WMbhgoV5
30
+ HOxqGqnwBsXX33P53WjRrAt0J9sIdplU6lhb/ZYpvPiAKBHO4Ky+SPNQcF7hBKdj
31
+ U+9uJLikOA8z14ek4z2CJqNiBO7ouZ14PiLPCDBKcEph6pve6OYQG7x5bnS5UmOP
32
+ coSFSo+bCwu15iBoQDgTSZSY7RDD5HNRL/klat8SaKrFwp0XXfUiRi8LTHRWxswe
33
+ QcpshuyUHnpaGJ3XftwGw2FZGCAGSqIoSsVpAtazx3/ycK7JfwvATOS8l/7VWs3O
34
+ DsvPtPbxt2RLMp8hushLA4zXRYPIG6J1oey40opKxQks1SJX3tDiyk5jebwsT/ZB
35
+ 0EzYO3shlM98rrWiiFxLwv+ebOPV9SrDbivLfXs8VMxYD0rOF3ap53AfBiElvszL
36
+ XV2ORsrE0BA5hbgbfiQFazW2d62rWKrt3CTi36GNST95GXGBpapX9CyezadYE+5i
37
+ D3/VNb1+lseG5sGSOWMV8J01/J89XOfp5Gk=
37
38
  -----END CERTIFICATE-----
38
- date: 2022-04-07 00:00:00.000000000 Z
39
+ date: 2023-02-22 00:00:00.000000000 Z
39
40
  dependencies:
40
41
  - !ruby/object:Gem::Dependency
41
42
  name: dir-to-xml
@@ -106,7 +107,7 @@ dependencies:
106
107
  version: '0.7'
107
108
  - - ">="
108
109
  - !ruby/object:Gem::Version
109
- version: 0.7.2
110
+ version: 0.7.3
110
111
  type: :runtime
111
112
  prerelease: false
112
113
  version_requirements: !ruby/object:Gem::Requirement
@@ -116,7 +117,7 @@ dependencies:
116
117
  version: '0.7'
117
118
  - - ">="
118
119
  - !ruby/object:Gem::Version
119
- version: 0.7.2
120
+ version: 0.7.3
120
121
  - !ruby/object:Gem::Dependency
121
122
  name: wordsdotdat
122
123
  requirement: !ruby/object:Gem::Requirement
@@ -163,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
163
164
  - !ruby/object:Gem::Version
164
165
  version: '0'
165
166
  requirements: []
166
- rubygems_version: 3.2.22
167
+ rubygems_version: 3.4.4
167
168
  signing_key:
168
169
  specification_version: 4
169
170
  summary: Makes publishing to the web easier
metadata.gz.sig CHANGED
Binary file