mymedia 0.5.5 → 0.5.6
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/mymedia.rb +108 -104
- data.tar.gz.sig +0 -0
- metadata +30 -29
- 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: a9017547d1a397550cf5ca9814c06c40dfbf124788d2f70886ed140cd522de5b
|
4
|
+
data.tar.gz: a00880daf1a062ab77d0680caf230cf68f774cba51c658bbec2ebd700038d20a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
|
@@ -186,27 +186,29 @@ module MyMedia
|
|
186
186
|
|
187
187
|
class BaseException < Exception
|
188
188
|
end
|
189
|
-
|
189
|
+
|
190
190
|
class Base < Publisher
|
191
191
|
include RXFileIOModule
|
192
192
|
|
193
|
-
attr_reader :to_s
|
193
|
+
attr_reader :to_s, :destination
|
194
194
|
|
195
195
|
def initialize(media_type: 'blog', public_type: media_type,
|
196
|
-
ext: 'txt', config: nil, log: nil,
|
196
|
+
ext: 'txt', config: nil, log: nil, now: Time.now,
|
197
|
+
debug: false)
|
197
198
|
|
198
|
-
super()
|
199
|
+
super()
|
199
200
|
|
200
|
-
@
|
201
|
+
@now = now
|
202
|
+
@schema = 'posts/post(title, url, raw_url)'
|
201
203
|
|
202
|
-
raise BaseException, "no config found"
|
204
|
+
raise BaseException, "no config found" unless config
|
203
205
|
|
204
206
|
c = SimpleConfig.new(config).to_h
|
205
|
-
|
207
|
+
|
206
208
|
@home = c[:home]
|
207
209
|
puts '@home: ' + @home.inspect if @debug
|
208
210
|
@media_src = "%s/media/%s" % [@home, media_type]
|
209
|
-
@website = c[:website]
|
211
|
+
@website = c[:website]
|
210
212
|
|
211
213
|
@dynamic_website = c[:dynamic_website]
|
212
214
|
@www = c[:www]
|
@@ -214,33 +216,33 @@ module MyMedia
|
|
214
216
|
|
215
217
|
@sps = c[:sps]
|
216
218
|
@omit_html_ext = c[:omit_html_ext]
|
217
|
-
|
219
|
+
|
218
220
|
@log = log
|
219
221
|
|
220
222
|
|
221
223
|
@media_type = media_type
|
222
224
|
@public_type = public_type ||= @media_type
|
223
|
-
|
225
|
+
|
224
226
|
@xslt_schema = 'channel[title:title,description:desc]/' + \
|
225
227
|
'item(title:title,link:url)'
|
226
228
|
@ext = ext
|
227
229
|
@rss = false
|
228
230
|
@debug = debug
|
229
|
-
|
231
|
+
|
230
232
|
DirX.chdir @home
|
231
233
|
|
232
234
|
end
|
233
|
-
|
235
|
+
|
234
236
|
def add_feed_item(raw_msg, record, options={})
|
235
|
-
|
236
|
-
dynarex_filepath = File.join([@home, @public_type, 'dynarex.xml'])
|
237
|
-
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']))
|
238
240
|
static_url = @static_baseurl + id
|
239
241
|
record[:uri] = static_url
|
240
|
-
|
241
|
-
publish_dynarex(dynarex_filepath, record, {id: id}.merge(options))
|
242
|
-
publish_timeline(raw_msg, static_url)
|
243
|
-
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')
|
244
246
|
end
|
245
247
|
|
246
248
|
def auto_copy_publish(raw_msg='', &blk)
|
@@ -260,7 +262,7 @@ module MyMedia
|
|
260
262
|
end
|
261
263
|
|
262
264
|
end
|
263
|
-
|
265
|
+
|
264
266
|
def basename(raw_s1, raw_s2)
|
265
267
|
|
266
268
|
s1 = raw_s1.sub(/dfs:\/\/[^\/]+/,'')
|
@@ -268,38 +270,40 @@ module MyMedia
|
|
268
270
|
|
269
271
|
(s2.split('/') - s1.split('/')).join('/')
|
270
272
|
|
271
|
-
end
|
272
|
-
|
273
|
+
end
|
274
|
+
|
273
275
|
def copy_publish(filename, raw_msg='', &blk)
|
274
276
|
file_publish(filename, raw_msg)
|
275
277
|
end
|
276
|
-
|
278
|
+
|
277
279
|
|
278
280
|
private
|
281
|
+
|
282
|
+
def file_publish(src_path, raw_msg='', sps: true)
|
279
283
|
|
280
|
-
def file_publish(src_path, raw_msg='')
|
281
|
-
|
282
|
-
#raise @logger.debug("source file '%s' not found" % src_path) unless File.exists? src_path
|
283
284
|
ext = File.extname(src_path)
|
284
285
|
@target_ext ||= ext
|
285
|
-
|
286
|
+
|
286
287
|
public_path = "%s/%s/%shrs%s" % [@public_type, \
|
287
|
-
|
288
|
+
@now.strftime('%Y/%b/%d').downcase, @now.strftime('%H%M'),
|
288
289
|
@target_ext]
|
289
290
|
|
290
291
|
public_path2 = "%s/%s/%shrs%s%s" % [@public_type, \
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
raw_destination =
|
295
|
-
|
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
|
+
|
296
297
|
if FileX.exists? raw_destination then
|
297
|
-
raw_destination =
|
298
|
+
raw_destination = File.join(@home, @www, 'r', public_path2)
|
298
299
|
public_path = public_path2
|
299
300
|
end
|
300
301
|
|
301
|
-
destination = File.join(@home, public_path)
|
302
|
+
destination = File.join(@home, @www, public_path)
|
303
|
+
puts 'before raw_destination: ' + raw_destination.inspect if @debug
|
302
304
|
FileX.mkdir_p File.dirname(raw_destination)
|
305
|
+
|
306
|
+
puts 'before destination: ' + destination.inspect if @debug
|
303
307
|
FileX.mkdir_p File.dirname(destination)
|
304
308
|
|
305
309
|
if @debug then
|
@@ -311,9 +315,9 @@ module MyMedia
|
|
311
315
|
|
312
316
|
raw_msg = src_path[/([^\/]+)\.\w+$/,1] + ' ' + raw_msg if raw_msg[/^#/]
|
313
317
|
|
314
|
-
|
318
|
+
|
315
319
|
if block_given? then
|
316
|
-
raw_msg, target_url = yield(destination, raw_destination)
|
320
|
+
raw_msg, target_url = yield(destination, raw_destination)
|
317
321
|
static_url = target_url
|
318
322
|
else
|
319
323
|
|
@@ -333,22 +337,21 @@ module MyMedia
|
|
333
337
|
|
334
338
|
end
|
335
339
|
|
336
|
-
raw_msg = raw_msg.join if raw_msg.is_a? Array
|
340
|
+
raw_msg = raw_msg.join if raw_msg.is_a? Array
|
337
341
|
|
338
342
|
static_filename = if raw_msg.to_s.length > 0 then
|
339
343
|
normalize(raw_msg) + File.extname(destination)
|
340
344
|
else
|
341
|
-
|
345
|
+
|
342
346
|
basename(@media_src, src_path)
|
343
|
-
|
344
|
-
end
|
345
|
-
|
347
|
+
|
348
|
+
end
|
349
|
+
|
346
350
|
static_path = "%s/%s/%s" % [@public_type, \
|
347
|
-
|
348
|
-
|
349
|
-
raw_static_destination =
|
350
|
-
|
351
|
-
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)
|
352
355
|
|
353
356
|
#FileUtils.mkdir_p File.dirname(static_destination)
|
354
357
|
|
@@ -365,7 +368,7 @@ module MyMedia
|
|
365
368
|
if File.extname(static_destination) == '.html' then
|
366
369
|
|
367
370
|
xmlfilepath = destination.sub('.html','.xml')
|
368
|
-
|
371
|
+
|
369
372
|
if FileX.exists?(xmlfilepath) then
|
370
373
|
|
371
374
|
FileX.cp xmlfilepath, static_destination.sub('.html','.xml')
|
@@ -377,40 +380,41 @@ module MyMedia
|
|
377
380
|
end
|
378
381
|
|
379
382
|
end
|
380
|
-
|
383
|
+
|
381
384
|
target_url ||= "%s/%s" % [@website, public_path]
|
382
385
|
static_url ||= "%s/%s" % [@website, static_path]
|
383
386
|
|
384
387
|
msg = "%s %s" % [target_url, raw_msg ]
|
385
|
-
|
386
|
-
sps_message = ['publish', @public_type,
|
388
|
+
|
389
|
+
sps_message = ['publish', @public_type,
|
387
390
|
target_url, static_url, raw_msg]
|
388
391
|
|
389
|
-
send_message(msg: sps_message.join(' '))
|
392
|
+
send_message(msg: sps_message.join(' ')) if sps
|
390
393
|
|
391
394
|
static_url
|
392
|
-
|
395
|
+
|
393
396
|
end
|
394
|
-
|
397
|
+
|
395
398
|
def normalize(s)
|
396
399
|
|
397
|
-
r = s.downcase.gsub(/\s#\w+/,'').strip.gsub(/\W/,'-').gsub(/-{2,}/,'-')
|
400
|
+
r = s.downcase.gsub(/\s#\w+/,'').strip.gsub(/\W/,'-').gsub(/-{2,}/,'-')\
|
401
|
+
.gsub(/^-|-$/,'')
|
398
402
|
return s.scan(/#(\w+)/)[0..1].join('_').downcase if r.empty?
|
399
|
-
return r
|
400
|
-
end
|
403
|
+
return r
|
404
|
+
end
|
401
405
|
|
402
406
|
end
|
403
|
-
|
404
|
-
|
407
|
+
|
408
|
+
|
405
409
|
class FrontpageException < Exception
|
406
410
|
end
|
407
|
-
|
411
|
+
|
408
412
|
class Frontpage < Publisher
|
409
|
-
|
413
|
+
|
410
414
|
def initialize(config: nil, public_type: '', rss: nil)
|
411
|
-
|
415
|
+
|
412
416
|
raise FrontpageException, "no config found" if config.nil?
|
413
|
-
|
417
|
+
|
414
418
|
c = SimpleConfig.new(config).to_h
|
415
419
|
|
416
420
|
@home = c[:home]
|
@@ -419,56 +423,56 @@ module MyMedia
|
|
419
423
|
@rss = rss
|
420
424
|
@sps = c[:sps]
|
421
425
|
@opts = {username: c[:username], password: c[:password]}
|
422
|
-
|
426
|
+
|
423
427
|
end
|
428
|
+
|
429
|
+
def publish_frontpage(s='index.html')
|
424
430
|
|
425
|
-
|
426
|
-
|
427
|
-
publish_html(@home + '/' + s)
|
431
|
+
publish_html(@home + '/' + s)
|
428
432
|
'frontpage published'
|
429
|
-
end
|
430
|
-
|
433
|
+
end
|
431
434
|
|
435
|
+
|
432
436
|
def publish_to_lists(record={}, public_type=nil)
|
433
|
-
|
437
|
+
|
434
438
|
@log.info 'inside publish_to_lists' if @log
|
435
|
-
|
439
|
+
|
436
440
|
@public_type = public_type if public_type
|
437
441
|
|
438
442
|
raw_msg, static_url, target_url = \
|
439
443
|
record[:title], record[:url], record[:static_url]
|
440
444
|
|
441
|
-
dynarex_filepath =
|
442
|
-
raw_dynarex_filepath =
|
443
|
-
|
445
|
+
dynarex_filepath = File.join(@home, @www, @public_type, 'dynarex.xml')
|
446
|
+
raw_dynarex_filepath = File.join(@home, @www, 'r', @public_type, 'dynarex.xml')
|
444
447
|
|
445
|
-
publish_dynarex(dynarex_filepath, record, {rss: @rss || false})
|
446
|
-
publish_dynarex(raw_dynarex_filepath, record, {rss: @rss || false})
|
448
|
+
publish_dynarex(dynarex_filepath, record, {rss: @rss || false})
|
449
|
+
publish_dynarex(raw_dynarex_filepath, record, {rss: @rss || false})
|
447
450
|
|
448
|
-
publish_timeline(raw_msg, static_url, target_url)
|
451
|
+
publish_timeline(raw_msg, static_url, target_url)
|
449
452
|
send_message(msg: 'publish_to_lists completed')
|
450
|
-
|
453
|
+
|
451
454
|
end
|
452
455
|
|
453
|
-
|
456
|
+
|
454
457
|
def publish_timeline(raw_msg, static_url, target_url='')
|
455
458
|
|
456
|
-
timeline_filepath =
|
457
|
-
|
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)
|
458
462
|
|
459
463
|
thumbnail, subject_url = record.thumbnail, record.url
|
460
|
-
|
464
|
+
|
461
465
|
content = {
|
462
|
-
title: raw_msg,
|
466
|
+
title: raw_msg,
|
463
467
|
url: static_url,
|
464
|
-
thumbnail: thumbnail,
|
465
|
-
subject_url: subject_url,
|
466
|
-
raw_url: target_url
|
468
|
+
thumbnail: thumbnail,
|
469
|
+
subject_url: subject_url,
|
470
|
+
raw_url: target_url
|
467
471
|
}
|
472
|
+
|
473
|
+
publish_dynarex(timeline_filepath, content, rss: true)
|
468
474
|
|
469
|
-
|
470
|
-
|
471
|
-
end
|
475
|
+
end
|
472
476
|
|
473
477
|
end
|
474
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
|
+
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
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
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:
|
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.
|
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.
|
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.
|
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
|