mymedia-pages 0.5.5 → 0.6.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: af918e4dae17e35a6a4c9576e81070f6f26ab5f7820a9bcf273fe4e31a0795b8
4
- data.tar.gz: e12380cea62d949ad9c0a31b7d1fb3df23ac4a253bb5eb5f8eeb2c5e03b78941
3
+ metadata.gz: 0030ca25c7cd349733b8dce14aa5305c277847cf348fbac301802ef781b93d90
4
+ data.tar.gz: 52da1b2a29051d4a2bc9a5104e1dde3472d0c5421e75404b0a31a6f5b63fd27e
5
5
  SHA512:
6
- metadata.gz: 3302c9c4f33b356a242f668b110778f434ee3fb7f12f0dea3bce3958a0b30f7129c02904bed193208e2d02384f115966e075cffd5765523e09af1212aa221596
7
- data.tar.gz: cd97a612da7945a8523d61ef5cc60b163f9893a742567d607950fa00cc0eea89772a9ef7dd22c57dfe53ba841e1510f281a3708afa351f83b54e9dc4fb0508d4
6
+ metadata.gz: 2ffa05fc30a5c69b2c5a8960eacaf3f1cf63d35a4096670033c7fcb297984b0a07d3493b23567dcb2ba63aa52ed6701ad822bbe944c82f758782d6867782b46f
7
+ data.tar.gz: aa385bdafe4d7d79a42a3d0fe1010d65dd60b6ddf3f3dc23d692e7d852335f91c7fc56537c6dfab930ea066ea64ff45585b880ed0fb96bc1381148ba615c2829
checksums.yaml.gz.sig CHANGED
Binary file
data/lib/mymedia-pages.rb CHANGED
@@ -30,7 +30,7 @@ module PageReader
30
30
  File.join(@home, @www, @public_type, s.sub(/\.html$/,'') + '.html')
31
31
  else
32
32
  # static file
33
- File.join(@home, @public_type, s.sub(/\.html$/,'') + '.html')
33
+ File.join(@home, @www, @public_type, s.sub(/\.html$/,'') + '.html')
34
34
  end
35
35
 
36
36
  FileX.read(filepath)
@@ -52,31 +52,34 @@ class MyMediaPages < MyMedia::Base
52
52
  def initialize(media_type: media_type='pages',
53
53
  public_type: @public_type=media_type, ext: '.(html|md|txt)',
54
54
  config: nil, log: nil, debug: false)
55
-
55
+
56
+ raise MyMediaPagesError, 'Missing config' unless config
57
+
56
58
  super(media_type: media_type, public_type: @public_type=media_type,
57
59
  ext: '.(html|md|txt)', config: config, log: log)
58
60
 
59
61
  @target_ext = '.html'
60
62
  @static_html = true
61
63
  @debug = debug
62
-
63
- end
64
-
64
+
65
+ end
66
+
65
67
  def copy_publish(filename, raw_msg='')
66
68
 
67
69
  @log.info 'MyMediaPagesinside copy_publish' if @log
68
70
  @filename = filename
69
- src_path = File.join(filename)
71
+ #jr2022-10-09 src_path = File.join(@media_src, filename)
72
+ src_path = filename
70
73
 
71
- if File.basename(src_path)[/[a-z]\d{6}T\d{4}\.(?:html)/] then
74
+ if File.basename(src_path)[/[a-z]\d{6}T\d{4}\.(?:html)/] then
72
75
  return file_publish(src_path, raw_msg)
73
76
  end
74
77
 
75
78
  file_publish(src_path, raw_msg) do |destination, raw_destination|
76
79
 
77
80
  ext = File.extname(src_path)
78
-
79
- if ext[/\.(?:md|txt)/] then
81
+
82
+ if ext[/\.(?:md|txt)/] then
80
83
 
81
84
  raw_dest_xml = raw_destination.sub(/html$/,'xml')
82
85
  dest_xml = destination.sub(/html$/,'xml')
@@ -84,7 +87,7 @@ class MyMediaPages < MyMedia::Base
84
87
 
85
88
  puts "src: %s dest: %s" % [src_path, x_destination] if @debug
86
89
  FileX.cp src_path, x_destination
87
-
90
+
88
91
  source = x_destination[/\/r\/#{@public_type}.*/]
89
92
  s = @website + source
90
93
 
@@ -100,15 +103,15 @@ class MyMediaPages < MyMedia::Base
100
103
  @log.info 'mymedia_pages/copy_publish: after modify_xml' if @log
101
104
 
102
105
  FileX.write raw_destination,
103
- xsltproc(File.join(@home, 'r', 'xsl', @public_type + '.xsl'),
106
+ xsltproc(File.join(@home, @www, 'r', 'xsl', @public_type + '.xsl'),
104
107
  raw_dest_xml)
105
108
  FileX.write destination,
106
109
  xsltproc(File.join(@home, @www, 'xsl', @public_type + '.xsl'),
107
110
  dest_xml)
108
111
 
109
112
  html_filename = basename(@media_src, src_path).sub(/(?:md|txt)$/,'html')
110
-
111
-
113
+
114
+
112
115
  xml_filename = html_filename.sub(/html$/,'xml')
113
116
 
114
117
  FileX.mkdir_p File.dirname(File.join(File.dirname(destination),
@@ -121,53 +124,56 @@ class MyMediaPages < MyMedia::Base
121
124
  FileX.cp dest_xml, File.join(File.dirname(dest_xml), xml_filename)
122
125
 
123
126
  tags = doc.root.xpath('summary/tags/tag/text()')
124
- raw_msg = "%s %s" % [doc.root.text('summary/title'),
127
+ raw_msg = "%s %s" % [doc.root.text('summary/title'),
125
128
  tags.map {|x| "#%s" % x }.join(' ')]
126
-
127
-
129
+
130
+
128
131
  @log.info "msg: %s tags: %s" % [raw_msg, tags.inspect] if @log
129
132
 
130
133
 
131
134
  else
132
-
135
+
133
136
  html_filename = basename(src_path)
134
-
137
+
135
138
  if html_filename =~ /\// then
136
139
  FileX.mkdir_p File.dirname(html_filename)
137
- end
138
-
140
+ end
141
+
139
142
  FileX.cp src_path, destination
140
143
  FileX.cp src_path, raw_destination
141
-
144
+
142
145
  raw_msg = FileX.read(destination)[/<title>([^<]+)<\/title>/,1]
143
146
  end
144
-
147
+
145
148
  if not File.basename(src_path)[/[a-z]\d{6}T\d{4}\.(?:html|md|txt)/] then
146
-
149
+
147
150
  @log.info 'MyMediaPages::copy_publish before FileUtils' if @log
148
- FileX.mkdir_p File.dirname(@home + "/#{@public_type}/" + html_filename)
149
- FileX.cp destination, @home + "/#{@public_type}/" + html_filename
151
+
152
+ html_filepath = File.join(@home, @www, @public_type, html_filename)
153
+ FileX.mkdir_p File.dirname(html_filepath)
154
+ FileX.cp destination, html_filepath
150
155
 
151
156
  if xml_filename then
152
- FileUtils.cp dest_xml, @home + "/#{@public_type}/" + xml_filename
157
+ xml_filepath = File.join(@home, @www, @public_type, xml_filename)
158
+ FileUtils.cp dest_xml, xml_filepath
153
159
  end
154
160
 
155
- static_filepath = @home + "/#{@public_type}/static.xml"
156
- x_filename = @static_html == true ? html_filename : xml_filename
157
- target_url = [@website, @public_type, x_filename].join('/')
158
-
161
+ static_filepath = File.join(@home, @www, @public_type, 'static.xml')
162
+ x_filename = @static_html == true ? html_filename : xml_filename
163
+
159
164
  if @log then
160
165
  @log.info 'MyMediaPages::copy_publish ->file_publish ' +
161
166
  'before publish_dynarex'
162
167
  end
163
-
168
+
169
+ target_url = File.join(@website, @public_type, x_filename)
164
170
  target_url.sub!(/\.html$/,'') if @omit_html_ext
165
- publish_dynarex(static_filepath, {title: raw_msg, url: target_url })
171
+ publish_dynarex(static_filepath, {title: raw_msg, url: target_url })
166
172
 
167
173
  end
168
174
 
169
175
  [raw_msg, target_url]
170
- end
176
+ end
171
177
 
172
178
  end
173
179
 
@@ -175,8 +181,20 @@ class MyMediaPages < MyMedia::Base
175
181
  s.gsub(/ +/,'_')#.gsub(/'/,'%27')
176
182
  end
177
183
 
178
- private
184
+ def writecopy_publish(raws, filename=nil)
185
+
186
+ s = raws.strip.gsub(/\r/,'')
187
+
188
+ title = escape(s.lines[0].chomp)
189
+ filename ||= title + '.txt'
190
+ FileX.write File.join(@media_src, filename), s
179
191
 
192
+ copy_publish File.join(@media_src, filename)
193
+ end
194
+
195
+
196
+ private
197
+
180
198
  def htmlize(raw_buffer)
181
199
 
182
200
  buffer = Martile.new(raw_buffer, ignore_domainlabel: @domain).to_s
@@ -194,7 +212,7 @@ class MyMediaPages < MyMedia::Base
194
212
  html = Kramdown::Document.new(s).to_html
195
213
  [raw_title, raw_tags, html]
196
214
 
197
- end
215
+ end
198
216
 
199
217
  def microblog_title(doc)
200
218
 
@@ -202,7 +220,7 @@ class MyMediaPages < MyMedia::Base
202
220
 
203
221
  title = summary.text('title')
204
222
  tags = summary.xpath('tags/tag/text()').map{|x| '#' + x}.join(' ')
205
-
223
+
206
224
  url = "%s/%s/yy/mm/dd/hhmmhrs.html" % [@website, @media_type]
207
225
  full_title = (url + title + ' ' + tags)
208
226
 
@@ -213,9 +231,9 @@ class MyMediaPages < MyMedia::Base
213
231
 
214
232
  title + ' ' + tags
215
233
 
216
- end
217
-
218
-
234
+ end
235
+
236
+
219
237
  def modify_xml(docx, filepath, xslpath='r/')
220
238
 
221
239
  if @debug then
@@ -225,9 +243,9 @@ class MyMediaPages < MyMedia::Base
225
243
  if @log then
226
244
  @log.info 'mymedia_pages: inside modify_xml: docx.xml: ' + docx.xml.inspect
227
245
  end
228
-
246
+
229
247
  doc = Rexle.new docx.xml pretty: false
230
-
248
+
231
249
  if @log then
232
250
  @log.info 'doc.xml: ' + doc.xml.inspect if @log
233
251
  end
@@ -240,7 +258,7 @@ class MyMediaPages < MyMedia::Base
240
258
  yield(doc) if block_given?
241
259
  FileX.write filepath, doc.xml(declaration: true, pretty: false)
242
260
  end
243
-
261
+
244
262
  def xml(raw_buffer, filename, original_file)
245
263
 
246
264
  begin
@@ -249,12 +267,12 @@ class MyMediaPages < MyMedia::Base
249
267
  raw_title, raw_tags, html = htmlize(raw_buffer)
250
268
  puts 'after htmlize'
251
269
 
252
- doc = Rexle.new("<body>%s</body>" % html)
270
+ doc = Rexle.new("<body>%s</body>" % html)
253
271
 
254
272
  doc.root.xpath('//a').each do |x|
255
273
 
256
274
  next unless x.attributes[:href] and x.attributes[:href].empty?
257
-
275
+
258
276
  new_link = x.text.gsub(/\s/,'_')
259
277
 
260
278
  x.attributes[:href] = "#{@dynamic_website}/do/#{@public_type}/new/" \
@@ -262,18 +280,18 @@ class MyMediaPages < MyMedia::Base
262
280
  x.attributes[:class] = 'new'
263
281
  x.attributes[:title] = x.text + ' (page does not exist)'
264
282
  end
265
-
283
+
266
284
  body = doc.root.children.join
267
285
 
268
- # A special tag can be used to represent a metatag which indicates if
269
- # the document access is to be made public. The special tag can either
286
+ # A special tag can be used to represent a metatag which indicates if
287
+ # the document access is to be made public. The special tag can either
270
288
  # be a 'p' or 'public'
271
289
 
272
290
  access = raw_tags.last[/^(?:p|public)$/] ? raw_tags.pop : nil
273
-
291
+
274
292
  xml = RexleBuilder.new
275
-
276
- a = xml.page do
293
+
294
+ a = xml.page do
277
295
  xml.summary do
278
296
  xml.title raw_title
279
297
  xml.tags { raw_tags.each {|tag| xml.tag tag }}
@@ -284,20 +302,20 @@ class MyMediaPages < MyMedia::Base
284
302
  xml.published Time.now.strftime("%d-%m-%Y %H:%M")
285
303
  xml.filetitle original_file[/.*(?=\.\w+$)/]
286
304
  end
287
-
305
+
288
306
  xml.body body
289
307
  end
290
-
291
-
308
+
309
+
292
310
  rescue
293
311
  raise MyMediaPagesError, 'xml(): ' + ($!).inspect
294
312
  end
295
313
 
296
314
  return Rexle.new(a)
297
- end
298
-
299
- def xsltproc(xslpath, xmlpath)
300
-
315
+ end
316
+
317
+ def xsltproc(xslpath, xmlpath)
318
+
301
319
  if not FileX.exists? xslpath then
302
320
  raise MyMediaPagesError, 'Missing file - ' + xslpath
303
321
  end
@@ -306,3 +324,80 @@ class MyMediaPages < MyMedia::Base
306
324
  .transform(Nokogiri::XML(FileX.read(xmlpath))).to_xhtml(indent: 0)
307
325
  end
308
326
  end
327
+
328
+ module PagesTestSetup
329
+ include RXFileIOModule
330
+
331
+ def set_paths(cur_dir, www_dir, media_dir)
332
+
333
+ @cur_dir = cur_dir
334
+ @dir, @www_dir, @media_dir = @public_type, www_dir, media_dir
335
+
336
+ end
337
+
338
+ def cleanup()
339
+
340
+ # remove the previous test files
341
+ #
342
+ FileX.rm_r @www_dir + '/*', force: true
343
+ puts "Previous #{@www_dir} files now removed!"
344
+
345
+ FileX.rm_r @media_dir + '/*', force: true
346
+ puts "Previous #{@media_dir} files now removed!"
347
+
348
+ end
349
+
350
+ def prep()
351
+
352
+ # create the template files and directories
353
+ #
354
+ xsl_file = @public_type + '.xsl'
355
+ xsl_src = File.join(@cur_dir, @public_type + '.xsl')
356
+
357
+ www_dest = File.join(@www_dir, 'xsl', xsl_file)
358
+ r_dest = File.join(@www_dir, 'r', 'xsl', xsl_file)
359
+ index_dest = File.join(@www_dir, @public_type, 'index-template.html')
360
+
361
+ FileX.mkdir_p File.dirname(www_dest)
362
+ FileX.cp xsl_src, www_dest
363
+
364
+ FileX.mkdir_p File.dirname(r_dest)
365
+ FileX.cp xsl_src, r_dest
366
+
367
+ FileX.mkdir_p File.dirname(index_dest)
368
+ FileX.cp File.join(@cur_dir, 'index-template.html'), index_dest
369
+
370
+ FileUtils.mkdir_p File.join(@media_dir, @dir)
371
+
372
+ end
373
+
374
+ # create the input file
375
+ #
376
+ def write(filename: '', content: '')
377
+
378
+ File.write File.join(@media_dir, @dir, filename), content
379
+ puts 'debug: filename: ' + filename.inspect
380
+
381
+ end
382
+
383
+ end
384
+
385
+
386
+ class PagesTester23 < MyMediaPages
387
+
388
+ include PagesTestSetup
389
+
390
+ # it is assumed this class will be executed from a test directory
391
+ # containing the following auxillary files:
392
+ # - pages.xsl
393
+ # - index-template.html
394
+
395
+ def initialize(config: '', cur_dir: '', www_dir: '/tmp/www',
396
+ media_dir: '/tmp/media', debug: false)
397
+
398
+ super(config: config, debug: debug)
399
+ set_paths(cur_dir, www_dir, media_dir)
400
+
401
+ end
402
+
403
+ end
data.tar.gz.sig CHANGED
Binary file
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mymedia-pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.5
4
+ version: 0.6.0
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
- YXN0ZXIvREM9amFtZXNyb2JlcnRzb24vREM9ZXUwHhcNMjExMjEzMjMyNTE5WhcN
15
- MjIxMjEzMjMyNTE5WjAsMSowKAYDVQQDDCFnZW1tYXN0ZXIvREM9amFtZXNyb2Jl
16
- cnRzb24vREM9ZXUwggGiMA0GCSqGSIb3DQEBAQUAA4IBjwAwggGKAoIBgQDZkvpq
17
- V5NXgRqy4VQgEbVJKXEuya2MM0Fof84MFz6CGAlgbEJPO66bdDgr5WEO+of44j0S
18
- 9G2eoeTbCia3nWdDtz3jZXPyUnqJHnq8Pvm7b3SjWhYBUn/GLoFeVSk5Nd++Q8j6
19
- wXgKTAIrlSyhPJp5BvqHsImO1l+v0ngDtGvPrMxqweMocxgITYVfaLDnJBwXn/xC
20
- tFCweX4o8SMZm0TXJgvpP2T/f+j6Hk8lkhjD62IctmoDdXyHCowgIXsIuioaoldO
21
- CF80CL4d1lGWcoCtmMxpZiJSNMPoMmOxiq23S6s9U4GiipwpgpzQKGwX/+3FqrHE
22
- MGD/QS6bs43Agme7DK8xhPa5RoXNeEVMTZyX/GjrwQ4tqrfkaw24nS2CXjTROh3Q
23
- Leu0FmxmEGDJcODXguDHZgiQsO1/vTqrPF8lfv4vNxzw9As8uNCH2AMe/ZlbiLJ1
24
- VQQT/ApcmpZWwYHj+iDXdiEP6zAH7OzAcq3IOgnDdJcLqfUJWBY+E3BM/J0CAwEA
25
- AaOBijCBhzAJBgNVHRMEAjAAMAsGA1UdDwQEAwIEsDAdBgNVHQ4EFgQUi6RPI2tJ
26
- vKeubmfzc8d/QhR/dJAwJgYDVR0RBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
27
- c29uLmV1MCYGA1UdEgQfMB2BG2dlbW1hc3RlckBqYW1lc3JvYmVydHNvbi5ldTAN
28
- BgkqhkiG9w0BAQsFAAOCAYEAqePoqXrgvPVoMgh+2yZ9phtDp7EAvzSP+iJajj4m
29
- /hjZFbamopfDpnsfb8Tr/OZ+H+0CZY/+hLiVq7yLIjB/KMk998/bqNN5upyQBrTr
30
- 5HaPY3mClTa+o5X7HjfUChpT10zTKbaMPtrF7oBC168J7FhYSvVQXhvKX9s7z1Ev
31
- FpS15aQ6JYBn9Sj1drVt5/fL8JDDHMr9+0EWBBGH+YKjbfWhpFFYdrKCqLXBem/t
32
- tytUs6a4PO15DZnfH6efHcWuKw6XeTeDZrTvw+qHtpWyfqTtza3R+uberWTFzUgs
33
- I71XvkAuSTjMMfuE19pCw+/0Aonol4M+RmQuziQp9OI9qxEXWz05qSRsg2LDk1LK
34
- XJKeOH2mtbm+ZqzL6UDvP/kGpBhw3CMeOgkwllzNSXhoEvBxuFewYMsNANPup8qZ
35
- jSG8iFV4kJofCyHyfW6zyZy0d22o23Syxam2rIESaal2RPL7gADDTc8XBe/sFeWr
36
- A7Ido2/5qg5YDVloSOHTfzZj
13
+ MIIEljCCAv6gAwIBAgIBATANBgkqhkiG9w0BAQsFADBIMRIwEAYDVQQDDAlnZW1t
14
+ YXN0ZXIxHjAcBgoJkiaJk/IsZAEZFg5qYW1lc3JvYmVydHNvbjESMBAGCgmSJomT
15
+ 8ixkARkWAmV1MB4XDTIzMDIyMTE2MTUwNloXDTI0MDIyMTE2MTUwNlowSDESMBAG
16
+ A1UEAwwJZ2VtbWFzdGVyMR4wHAYKCZImiZPyLGQBGRYOamFtZXNyb2JlcnRzb24x
17
+ EjAQBgoJkiaJk/IsZAEZFgJldTCCAaIwDQYJKoZIhvcNAQEBBQADggGPADCCAYoC
18
+ ggGBALbR+uY8Oo3fZCsufvicOAAr1/qPySuDheNENOTld2pVEgG6AbnUk5GiRGoL
19
+ MOObAU0hxvrL1C/Y8oz7ExfaPPZ23tSy6qx5INsAeJRABEftzSrQGdJiTfr8OxQZ
20
+ W15kKATzpxQJm8SYfDpjIWmT3kSw03pTC6QRJWc39CpnBlpyYPqsLncBhrw022SE
21
+ 1foO0ybxWAtYnAiov+kkJsseDnsVO1Hg4C/sOwXuh7RO8ehAvHSUAy+KPLVm4aX4
22
+ r/UwV70dbV1DZZzmpWBPSm7UPXg27yCTn4KGwAHT4eLz74cyt7B9NZ9cO45xFGCf
23
+ 6Hf4jCb5DD6xn5LNnLtvrs/tqWXX35VAEKXBpbou4Ufe9pAo82hhpT+nZEkQZZXk
24
+ ysrRD1FngqZtZ5ujy/pH03enbcsVzerBc0x2FqkjqXZdfI4nsinpq+TfGVUxo7rO
25
+ Ll9BT3tydPNJ33E7kb8l8Q6snKcATCTklenC8raI4z/gYzi4a/kZgD7llwWX4S6F
26
+ a5OtKwIDAQABo4GKMIGHMAkGA1UdEwQCMAAwCwYDVR0PBAQDAgSwMB0GA1UdDgQW
27
+ BBTO10cGGIh/ETBnCKMw5dkIaE5OHjAmBgNVHREEHzAdgRtnZW1tYXN0ZXJAamFt
28
+ ZXNyb2JlcnRzb24uZXUwJgYDVR0SBB8wHYEbZ2VtbWFzdGVyQGphbWVzcm9iZXJ0
29
+ c29uLmV1MA0GCSqGSIb3DQEBCwUAA4IBgQCy1qflp5WM3c27wqkJa9BQty37R5+z
30
+ 382k7twdaIcOrk66Yb7H5R6KV3ysEVKgR98tEL+JefXyei/a9bM+NYQ/3k/QBCAn
31
+ 39Gp1gem4/4A3/kNxpwQQOW1edTz9bu1qZ7ktpKHlVQSKErvQX3/b0oSfqO2xv+M
32
+ CotJDFOtipit0+WBfZSrVuVZFgg8tJnAqMmdJt+zdn5YD1V65IXiY0KNIy+WEFVG
33
+ iAAoDhhci/sLwgcGlmb6rclSLGLavn+CLd8eSunc8qFWKpKfiLvSEuevV+vJGcQi
34
+ 6D0W3ZONRUTEN4nQdkyLCyXrwdCmSlgzo3ojRoza48uwsQmUyo/FtQ8SZEdwWmOH
35
+ /c8NuOCfmVbR19NAejS3CdlkIRQaYJAd6sdGjq6fQER/LZ81aTvFe2IE/uILLjv/
36
+ ngT+/RQQOTNmhN3XBRq8VfcVGUw+w5jm4emNDe1pzTATNmzyadOHF0Rokv0B2T4u
37
+ txMWqrBuLISsGTO4DRqpDmR09caoN5dRM6k=
37
38
  -----END CERTIFICATE-----
38
- date: 2022-04-25 00:00:00.000000000 Z
39
+ date: 2023-02-25 00:00:00.000000000 Z
39
40
  dependencies:
40
41
  - !ruby/object:Gem::Dependency
41
42
  name: mymedia
@@ -46,7 +47,7 @@ dependencies:
46
47
  version: '0.5'
47
48
  - - ">="
48
49
  - !ruby/object:Gem::Version
49
- version: 0.5.2
50
+ version: 0.5.6
50
51
  type: :runtime
51
52
  prerelease: false
52
53
  version_requirements: !ruby/object:Gem::Requirement
@@ -56,47 +57,47 @@ dependencies:
56
57
  version: '0.5'
57
58
  - - ">="
58
59
  - !ruby/object:Gem::Version
59
- version: 0.5.2
60
+ version: 0.5.6
60
61
  - !ruby/object:Gem::Dependency
61
62
  name: martile
62
63
  requirement: !ruby/object:Gem::Requirement
63
64
  requirements:
64
65
  - - "~>"
65
66
  - !ruby/object:Gem::Version
66
- version: '1.5'
67
+ version: '1.7'
67
68
  - - ">="
68
69
  - !ruby/object:Gem::Version
69
- version: 1.5.0
70
+ version: 1.7.0
70
71
  type: :runtime
71
72
  prerelease: false
72
73
  version_requirements: !ruby/object:Gem::Requirement
73
74
  requirements:
74
75
  - - "~>"
75
76
  - !ruby/object:Gem::Version
76
- version: '1.5'
77
+ version: '1.7'
77
78
  - - ">="
78
79
  - !ruby/object:Gem::Version
79
- version: 1.5.0
80
+ version: 1.7.0
80
81
  - !ruby/object:Gem::Dependency
81
82
  name: kramdown
82
83
  requirement: !ruby/object:Gem::Requirement
83
84
  requirements:
84
85
  - - "~>"
85
86
  - !ruby/object:Gem::Version
86
- version: '2.3'
87
+ version: '2.4'
87
88
  - - ">="
88
89
  - !ruby/object:Gem::Version
89
- version: 2.3.2
90
+ version: 2.4.0
90
91
  type: :runtime
91
92
  prerelease: false
92
93
  version_requirements: !ruby/object:Gem::Requirement
93
94
  requirements:
94
95
  - - "~>"
95
96
  - !ruby/object:Gem::Version
96
- version: '2.3'
97
+ version: '2.4'
97
98
  - - ">="
98
99
  - !ruby/object:Gem::Version
99
- version: 2.3.2
100
+ version: 2.4.0
100
101
  description:
101
102
  email: digital.robertson@gmail.com
102
103
  executables: []
@@ -123,7 +124,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
124
  - !ruby/object:Gem::Version
124
125
  version: '0'
125
126
  requirements: []
126
- rubygems_version: 3.2.22
127
+ rubygems_version: 3.4.4
127
128
  signing_key:
128
129
  specification_version: 4
129
130
  summary: A MyMedia gem to publish a basic web page
metadata.gz.sig CHANGED
Binary file