zenweb 3.9.0 → 3.10.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f182dd306078007adbb5ab6c1e53ad6a6d9ad389
4
- data.tar.gz: 546e36b5723788433e99824c100e4344a9c3c4f8
3
+ metadata.gz: 5febe4a0a9de6f9ee3ec7abe552561e6c2d14775
4
+ data.tar.gz: b422b7ec60e68338d26de19062336a29bd7b9df9
5
5
  SHA512:
6
- metadata.gz: 1a55442c3989e15e3cf236754bf4c609863be2e40da7c582b7f55ce4fb5202cbf2b5711e4e68abb03ac028bd68ebc36872364f77745cf18a879301438f8807d5
7
- data.tar.gz: aaab074cb12006a26c8e5a9378c482b50815a3731b31738faafb4e692b54f32558baf709247b654cf864f3a7742463b67cf2538f06bd6e20bda01849f535f5af
6
+ metadata.gz: a20d9d354d7fb0874100f6ebcda980f8323d14a8e88ee6afc7a4979a9bf7732a5ff9e934b0c06d25b307870bf2048d55c10b539bf1ef6aaa20cb496d141d53f7
7
+ data.tar.gz: 4f02f19c9b4441553d8d33a8e8998ca725b4168f61021117fa3584df1a77c6128b319bcad10f25dcc940eabe6d385b22de59cfc27e1c8be56bc86345054476e4
checksums.yaml.gz.sig CHANGED
Binary file
data/History.txt CHANGED
@@ -1,3 +1,19 @@
1
+ === 3.10.0 / 2016-10-09
2
+
3
+ * 7 minor enhancements:
4
+
5
+ * Added Page#stylesheet.
6
+ * Added Zenweb::Config#key? and hooked into Page#method_missing for quieter checks.
7
+ * Improved Site#method_missing to use Config#key? to allow nil values w/o warnings.
8
+ * MonthlyPage and YearlyPage now put date in config as well.
9
+ * Now ignores subdirs/subfiles that start with underscore (not just top level).
10
+ * Page#[] uses Config#key? to be better about nil entries.
11
+ * Site#layout will now raise if passed unknown layout name.
12
+
13
+ * 1 bug fix:
14
+
15
+ * Markdown sitemap now sorts w/ case folded.
16
+
1
17
  === 3.9.0 / 2015-12-21
2
18
 
3
19
  * 1 minor enhancement:
data/Manifest.txt CHANGED
@@ -18,6 +18,8 @@ example-site/blog/2012-01-02-page1.html.md
18
18
  example-site/blog/2012-01-03-page2.html.md
19
19
  example-site/blog/2012-01-04-page3.html.md
20
20
  example-site/blog/_config.yml
21
+ example-site/blog/_not_yet.html.md
22
+ example-site/blog/_tmp/not_yet.html.md
21
23
  example-site/blog/index.html.erb
22
24
  example-site/config.ru
23
25
  example-site/css/colors.css.less
@@ -5,7 +5,6 @@ author: John Doe
5
5
  email: john.doe@example.com
6
6
  feed_url: http://example.com/atom.xml
7
7
  rss_length: 15
8
- layout: nil
9
8
  ...
10
9
  <?xml version="1.0" encoding="utf-8"?>
11
10
  <feed xmlns="http://www.w3.org/2005/Atom">
File without changes
File without changes
@@ -1,5 +1,4 @@
1
1
  ---
2
- layout: nil
3
2
  ...
4
3
  <?xml version='1.0' encoding='UTF-8'?>
5
4
  <urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
data/lib/zenweb/config.rb CHANGED
@@ -51,6 +51,10 @@ module Zenweb
51
51
  h[k.to_s] or parent[k]
52
52
  end
53
53
 
54
+ def key? k
55
+ h.key?(k.to_s) or parent.key?(k)
56
+ end
57
+
54
58
  UTF_BOM = "\xEF\xBB\xBF"
55
59
  UTF_BOM.force_encoding "binary" if File::RUBY19
56
60
 
@@ -129,6 +133,7 @@ module Zenweb
129
133
  # :stopdoc:
130
134
  Config::Null = Class.new Config do
131
135
  def [] k; end
136
+ def key? k; end
132
137
  def initialize; end
133
138
  def inspect; "Config::Null"; end
134
139
  def wire; end
@@ -48,7 +48,6 @@ class Array # :nodoc:
48
48
  when Array then
49
49
  x.deep_each(depth + 1, &b)
50
50
  else
51
- # yield (depth-1)/2, x
52
51
  yield depth, x
53
52
  end
54
53
  end
data/lib/zenweb/page.rb CHANGED
@@ -68,7 +68,8 @@ module Zenweb
68
68
  # Helper method to access the config value named +k+.
69
69
 
70
70
  def [] k
71
- config[k] or warn("#{self.inspect} does not define #{k.inspect}")
71
+ warn("#{self.url} does not define #{k.inspect}") unless config.key?(k)
72
+ config[k]
72
73
  end
73
74
 
74
75
  ##
@@ -279,9 +280,9 @@ module Zenweb
279
280
  end
280
281
 
281
282
  ##
282
- # Render a named file from +_includes+.
283
- #
284
- # category: XXX
283
+ # Render a named file from +_includes+. You must pass in the
284
+ # current page. This can make its configuration available
285
+ # accessing it via page.
285
286
 
286
287
  def include name, page
287
288
  incl = Page.new(site, File.join("_includes", name))
@@ -303,8 +304,6 @@ module Zenweb
303
304
 
304
305
  ##
305
306
  # Return a layout Page named in the config key +layout+.
306
- #
307
- # TODO: expand
308
307
 
309
308
  def layout
310
309
  unless defined? @layout then
@@ -338,7 +337,11 @@ module Zenweb
338
337
  when /=|^render_|^to_a(?:ry)?$/ then # to_a/ry for 1.9 only. :(
339
338
  super
340
339
  else
341
- self[msg]
340
+ if config.key? msg
341
+ config[msg]
342
+ else
343
+ config.send msg, *args
344
+ end
342
345
  end
343
346
  end
344
347
 
@@ -363,6 +366,13 @@ module Zenweb
363
366
  file(url_path).needed?
364
367
  end
365
368
 
369
+ ##
370
+ # Stupid helper method to make declaring stylesheets cleaner
371
+
372
+ def stylesheet name
373
+ %(<link rel="stylesheet" type="text/css" href="/css/#{name}.css">)
374
+ end
375
+
366
376
  ##
367
377
  # Render a Page instance based on its filetypes. For example,
368
378
  # index.html.md.erb will essentially call:
@@ -620,6 +630,7 @@ module Zenweb
620
630
  def initialize site, path, pages, year, month
621
631
  super site, path, pages
622
632
  self.date = Time.local(year, month)
633
+ config.h['date'] = self.date
623
634
  end
624
635
  end
625
636
 
@@ -640,6 +651,7 @@ module Zenweb
640
651
  def initialize site, path, pages, year
641
652
  super site, path, pages
642
653
  self.date = Time.local(year)
654
+ config.h['date'] = self.date
643
655
  end
644
656
  end
645
657
  end
@@ -57,7 +57,7 @@ class Zenweb::Page
57
57
 
58
58
  dated, normal = a.map(&:last).reject(&:no_index?).partition(&:dated?)
59
59
 
60
- normal = normal.sort_by(&:url).map { |p| page_sitemap_url p, level }
60
+ normal = normal.sort_by { |p| p.url.downcase }.map { |p| page_sitemap_url p, level }
61
61
 
62
62
  dated = dated_map(dated) { |month, ps2|
63
63
  x = date_sorted_map(ps2) { |p|
data/lib/zenweb/site.rb CHANGED
@@ -119,7 +119,7 @@ module Zenweb
119
119
  # Returns a layout named +name+.
120
120
 
121
121
  def layout name
122
- @layouts[name]
122
+ name and (@layouts[name] or raise "unknown layout #{name.inspect}")
123
123
  end
124
124
 
125
125
  ##
@@ -133,8 +133,9 @@ module Zenweb
133
133
  ##
134
134
  # Proxy object for the config. Returns a config item at +msg+.
135
135
 
136
- def method_missing msg, *args
137
- config[msg.to_s] || warn("#{self.inspect} does not define #{msg}")
136
+ def method_missing msg, *_args
137
+ k = msg.to_s
138
+ config.key?(k) ? config[k] : warn("#{self.inspect} does not define #{k}")
138
139
  end
139
140
 
140
141
  ##
@@ -173,6 +174,7 @@ module Zenweb
173
174
  top = Dir["*"] - excludes
174
175
  files = top.select { |path| File.file? path }
175
176
  files += Dir["{#{top.join(",")}}/**/*"].reject { |f| not File.file? f }
177
+ files.reject! { |f| f.include? "/_" }
176
178
 
177
179
  renderers_re = Page.renderers_re
178
180
 
data/lib/zenweb.rb CHANGED
@@ -6,7 +6,7 @@ require "time"
6
6
 
7
7
  module Zenweb
8
8
  # duh
9
- VERSION = "3.9.0"
9
+ VERSION = "3.10.0"
10
10
  end
11
11
 
12
12
  require "zenweb/site"
data/test/helper.rb CHANGED
@@ -44,6 +44,22 @@ class Minitest::Test
44
44
 
45
45
  site.fix_subpages
46
46
  end
47
+
48
+ def setup_complex_website
49
+ self.site = Zenweb::Site.new
50
+
51
+ pages = %w[
52
+ index.html.md
53
+ blog/index.html.md
54
+ blog/2014-01-01-first.html.md
55
+ blog/2014-02-02-second.html.md
56
+ blog/2014-03-03-third.html.md
57
+ ]
58
+
59
+ build_fake_site(*pages)
60
+
61
+ site.pages["index.html.md"]
62
+ end
47
63
  end
48
64
 
49
65
  class Zenweb::Page
@@ -58,6 +58,14 @@ class TestZenwebConfig < Minitest::Test
58
58
  Rake.application.options.trace = nil
59
59
  end
60
60
 
61
+ def test_key_eh
62
+ assert config.key? "title"
63
+
64
+ assert_silent do
65
+ refute config.key? "woot"
66
+ end
67
+ end
68
+
61
69
  def test_parent
62
70
  assert_equal site.configs["blog/_config.yml"], config.parent
63
71
  end
@@ -30,22 +30,6 @@ class TestZenwebPage < Minitest::Test
30
30
  return p1, p2
31
31
  end
32
32
 
33
- def setup_complex_website
34
- self.site = Zenweb::Site.new
35
-
36
- pages = %w[
37
- index.html.md
38
- blog/index.html.md
39
- blog/2014-01-01-first.html.md
40
- blog/2014-02-02-second.html.md
41
- blog/2014-03-03-third.html.md
42
- ]
43
-
44
- build_fake_site(*pages)
45
-
46
- site.pages["index.html.md"]
47
- end
48
-
49
33
  def setup_complex_website2 skip_monthly = false
50
34
  self.site = Zenweb::Site.new
51
35
 
@@ -335,11 +319,21 @@ class TestZenwebPage < Minitest::Test
335
319
  assert_equal page.config["title"], page["title"]
336
320
  end
337
321
 
322
+ def test_index_missing
323
+ exp = "/blog/2012/01/02/page1.html does not define \"missing\"\n"
324
+
325
+ assert_output "", exp do
326
+ assert_nil page["missing"]
327
+ end
328
+ end
329
+
338
330
  def test_inspect
339
331
  assert_equal 'Page["blog/2012-01-02-page1.html.md"]', page.inspect
340
332
  end
341
333
 
342
334
  def test_layout
335
+ site.scan # to load layouts
336
+
343
337
  assert_equal site.layout("post"), page.layout
344
338
  end
345
339
 
@@ -351,20 +345,21 @@ class TestZenwebPage < Minitest::Test
351
345
  assert_equal exp, page.link_html("blah")
352
346
  end
353
347
 
354
- def test_method_missing
355
- assert_equal page["title"], page.method_missing("title")
356
- end
357
-
358
348
  def test_meta
359
349
  exp = '<meta name="title" content="Example Page 1">'
360
350
  assert_equal exp, page.meta("title")
361
351
  end
362
352
 
353
+ def test_method_missing
354
+ assert_equal page["title"], page.method_missing("title")
355
+ end
356
+
363
357
  def test_method_missing_odd
364
- err = "Page[\"blog/2012-01-02-page1.html.md\"] does not define \"wtf\"\n"
365
- assert_output "", err do
358
+ e = assert_raises NoMethodError do
366
359
  assert_nil page.method_missing("wtf")
367
360
  end
361
+
362
+ assert_includes e.message, "undefined method `wtf'"
368
363
  end
369
364
 
370
365
  def test_method_missing_render
@@ -406,6 +401,7 @@ class TestZenwebPage < Minitest::Test
406
401
  end
407
402
 
408
403
  def test_render
404
+ page.instance_variable_set :@layout, nil # keep it skinny
409
405
  assert_equal "<p>Not really much here to see.</p>\n", page.render
410
406
  end
411
407
 
@@ -434,6 +430,11 @@ class TestZenwebPage < Minitest::Test
434
430
  assert_equal site, page.site
435
431
  end
436
432
 
433
+ def test_stylesheet
434
+ exp = %(<link rel="stylesheet" type="text/css" href="/css/woot.css">)
435
+ assert_equal exp, page.stylesheet("woot")
436
+ end
437
+
437
438
  def test_subpages
438
439
  site.scan
439
440
 
@@ -542,3 +543,43 @@ class TestZenwebPage < Minitest::Test
542
543
  end
543
544
  end
544
545
  end
546
+
547
+ class TestGenerated < Minitest::Test
548
+ include ChdirTest("example-site")
549
+
550
+ class MonthlyTest < Zenweb::MonthlyPage
551
+ def content
552
+ "woot"
553
+ end
554
+ end
555
+
556
+ class YearlyTest < Zenweb::YearlyPage
557
+ def content
558
+ "woot"
559
+ end
560
+ end
561
+
562
+ attr_accessor :site
563
+
564
+ def assert_date klass, *args
565
+ setup_complex_website
566
+
567
+ path = "blog/2014/01/index.html"
568
+ pages = []
569
+ monthly = klass.new(site, path, pages, *args)
570
+
571
+ exp_date = Time.local 2014, 1
572
+
573
+ assert_equal exp_date, monthly.date
574
+ assert_equal exp_date, monthly["date"]
575
+
576
+ end
577
+
578
+ def test_monthly_date
579
+ assert_date MonthlyTest, 2014, 1
580
+ end
581
+
582
+ def test_yearly_date
583
+ assert_date YearlyTest, 2014
584
+ end
585
+ end
@@ -29,7 +29,7 @@ class TestUgh < MarkdownTest
29
29
  def test_coderay_ruby
30
30
  assert_markdown_code("ruby",
31
31
  "def x\n 42\nend",
32
- '<div class="highlighter-coderay"><table class="CodeRay"><tr>',
32
+ '<div class="language-ruby highlighter-coderay"><table class="CodeRay"><tr>',
33
33
  '<span class="keyword">def</span>')
34
34
  end
35
35
 
@@ -121,6 +121,23 @@ class TestZenwebPageMarkdown < MarkdownTest
121
121
  assert_equal exp, act
122
122
  end
123
123
 
124
+ def test_sitemap_folded_sorting
125
+ build_fake_site %w[
126
+ a/index.html.md
127
+ a/ZenWeb.html.md
128
+ a/autotest.html.md
129
+ ]
130
+
131
+ page = site.pages["a/index.html.md"]
132
+ act = page.sitemap
133
+ exp = <<-END.cleanup
134
+ * [Title for a/autotest.html.md](/a/autotest.html)
135
+ * [Title for a/ZenWeb.html.md](/a/ZenWeb.html)
136
+ END
137
+
138
+ assert_equal exp, act
139
+ end
140
+
124
141
  def test_sitemap_multidir
125
142
  build_fake_site %w[a/index.html.md
126
143
  a/b/index.html.md
@@ -122,6 +122,22 @@ class TestZenwebSite < Minitest::Test
122
122
  assert_equal "Example Website", site.header
123
123
  end
124
124
 
125
+ def test_method_missing_missing
126
+ exp = "Site[0 pages, 1 configs] does not define missing\n"
127
+
128
+ assert_output "", exp do
129
+ assert_nil site.missing
130
+ end
131
+ end
132
+
133
+ def test_method_missing_nil
134
+ site.config.h["nil_key"] = nil
135
+
136
+ assert_silent do
137
+ assert_nil site.nil_key
138
+ end
139
+ end
140
+
125
141
  def test_pages
126
142
  site.scan
127
143
 
@@ -188,6 +204,33 @@ class TestZenwebSite < Minitest::Test
188
204
  refute_empty site.layouts
189
205
  end
190
206
 
207
+ def test_scan_excludes_underscores
208
+ site.scan
209
+
210
+ exp = %w[
211
+ about/index.html.md
212
+ atom.xml.erb
213
+ blog/2012-01-02-page1.html.md
214
+ blog/2012-01-03-page2.html.md
215
+ blog/2012-01-04-page3.html.md
216
+ blog/index.html.erb
217
+ css/colors.css.less
218
+ css/styles.css
219
+ css/syntax.css
220
+ img/bg.png
221
+ index.html.erb
222
+ js/jquery.js
223
+ js/site.js
224
+ pages/index.html.erb
225
+ pages/nonblogpage.html.md
226
+ projects/index.html.erb
227
+ projects/zenweb.html.erb
228
+ sitemap.xml.erb
229
+ ]
230
+
231
+ assert_equal exp, site.pages.keys.sort
232
+ end
233
+
191
234
  def test_wire
192
235
  Rake.application = Rake::Application.new
193
236
  site.scan
data.tar.gz.sig CHANGED
@@ -1 +1,2 @@
1
- ��fN6m�#��:Jq��Sz��<{hp� )�%�0魳�n�sz!9L������Ki�*]�yqn�S����-wU��%�����7�F�O�����$��S�?TZ|u�~kF���BT�J���N���e���HN�Vi����X��'�/���4m�ꪮ��Y�0g�[)Bu�_J����O�k0f��@E)����6�o\j��d��jl���`@��*�-�Úll�i�Vܘp�������$��w$
1
+ [T��ku�M��I��j����9*pgp3�����6��
2
+ I;T[ �W@c耜�y�ˁ݀�)�g�cQ�ǿ����pl�w�"򙈠ۓ���v�j
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zenweb
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.9.0
4
+ version: 3.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Davis
@@ -10,9 +10,9 @@ bindir: bin
10
10
  cert_chain:
11
11
  - |
12
12
  -----BEGIN CERTIFICATE-----
13
- MIIDPjCCAiagAwIBAgIBAzANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
13
+ MIIDijCCAnKgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
14
14
  ZC1ydWJ5MRkwFwYKCZImiZPyLGQBGRYJemVuc3BpZGVyMRMwEQYKCZImiZPyLGQB
15
- GRYDY29tMB4XDTE1MDkxOTIwNTEyMloXDTE2MDkxODIwNTEyMlowRTETMBEGA1UE
15
+ GRYDY29tMB4XDTE2MDkyNjAxNTczNVoXDTE3MDkyNjAxNTczNVowRTETMBEGA1UE
16
16
  AwwKcnlhbmQtcnVieTEZMBcGCgmSJomT8ixkARkWCXplbnNwaWRlcjETMBEGCgmS
17
17
  JomT8ixkARkWA2NvbTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALda
18
18
  b9DCgK+627gPJkB6XfjZ1itoOQvpqH1EXScSaba9/S2VF22VYQbXU1xQXL/WzCkx
@@ -20,16 +20,17 @@ cert_chain:
20
20
  oOvjtt5P8+GSK9zLzxQP0gVLS/D0FmoE44XuDr3iQkVS2ujU5zZL84mMNqNB1znh
21
21
  GiadM9GHRaDiaxuX0cIUBj19T01mVE2iymf9I6bEsiayK/n6QujtyCbTWsAS9Rqt
22
22
  qhtV7HJxNKuPj/JFH0D2cswvzznE/a5FOYO68g+YCuFi5L8wZuuM8zzdwjrWHqSV
23
- gBEfoTEGr7Zii72cx+sCAwEAAaM5MDcwCQYDVR0TBAIwADALBgNVHQ8EBAMCBLAw
24
- HQYDVR0OBBYEFEfFe9md/r/tj/Wmwpy+MI8d9k/hMA0GCSqGSIb3DQEBBQUAA4IB
25
- AQB+Hx8xUgrpZa4P8H8gR8zme5kISwQrG80MbpqJV6/G3/ZicRFhN5sjwu0uHGue
26
- bd9Cymf6oIRwHVarJux2M32T6bL07Hmi07w2QaPc3MnMKB/D46SRZ2JSSGPFRBTc
27
- SilobMRoGs/7B15uGFUEnNrCB/ltMqhwwSx1r++UQPfeySHEV9uqu03E5Vb7J37O
28
- 2Er6PLXHRiYsIycD1LkMi6YnixdITRHmrqJYE2rsjaIfpIehiusVAPHkNf7qbpHq
29
- qx3h45R1CAsObX0SQDIT+rRbQrtKz1GHIZTOFYvEJjUY1XmRTZupD3CJ8Q7sDqSy
30
- NLq5jm1fq6Y9Uolu3RJbmycf
23
+ gBEfoTEGr7Zii72cx+sCAwEAAaOBhDCBgTAJBgNVHRMEAjAAMAsGA1UdDwQEAwIE
24
+ sDAdBgNVHQ4EFgQUR8V72Z3+v+2P9abCnL4wjx32T+EwIwYDVR0RBBwwGoEYcnlh
25
+ bmQtcnVieUB6ZW5zcGlkZXIuY29tMCMGA1UdEgQcMBqBGHJ5YW5kLXJ1YnlAemVu
26
+ c3BpZGVyLmNvbTANBgkqhkiG9w0BAQUFAAOCAQEAIGzgp0aZ2W9+v96ujmBcQHoC
27
+ buy0iU68MVj2VlxMyfr1KPZIh1OyhU4UO4zrkREcH8ML70v9cYHNvOd9oynRHnvC
28
+ l2tj/fD3YJ0AEkJxGrYwRWQmvMfC4bJ02bC1+rVOUIXXKp3+cUmiN4sTniof8VFo
29
+ bo/YYP4c7erpERa+9hrqygg6WQbJlk2YRlH3JXPFjmu869i2dcbR5ZLOAeEy+axH
30
+ E4oJcnPkJAr0rw504JGtlZtONZQblwmRJOIdXzolaE3NRGUzGVOUSptZppAKiavY
31
+ fO6tdKQc/5RfA8oQEkg8hrxA5PQSz4TOFJGLpFvIapEk6tMruQ0bHgkhr9auXg==
31
32
  -----END CERTIFICATE-----
32
- date: 2015-12-21 00:00:00.000000000 Z
33
+ date: 2016-10-09 00:00:00.000000000 Z
33
34
  dependencies:
34
35
  - !ruby/object:Gem::Dependency
35
36
  name: rake
@@ -107,20 +108,6 @@ dependencies:
107
108
  - - ~>
108
109
  - !ruby/object:Gem::Version
109
110
  version: '1.4'
110
- - !ruby/object:Gem::Dependency
111
- name: minitest
112
- requirement: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - ~>
115
- - !ruby/object:Gem::Version
116
- version: '5.8'
117
- type: :development
118
- prerelease: false
119
- version_requirements: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - ~>
122
- - !ruby/object:Gem::Version
123
- version: '5.8'
124
111
  - !ruby/object:Gem::Dependency
125
112
  name: rdoc
126
113
  requirement: !ruby/object:Gem::Requirement
@@ -141,14 +128,14 @@ dependencies:
141
128
  requirements:
142
129
  - - ~>
143
130
  - !ruby/object:Gem::Version
144
- version: '3.14'
131
+ version: '3.15'
145
132
  type: :development
146
133
  prerelease: false
147
134
  version_requirements: !ruby/object:Gem::Requirement
148
135
  requirements:
149
136
  - - ~>
150
137
  - !ruby/object:Gem::Version
151
- version: '3.14'
138
+ version: '3.15'
152
139
  description: |-
153
140
  Zenweb is a set of classes/tools for organizing and formating a
154
141
  website. It is website oriented rather than webpage oriented, unlike
@@ -175,6 +162,8 @@ extra_rdoc_files:
175
162
  - example-site/blog/2012-01-02-page1.html.md
176
163
  - example-site/blog/2012-01-03-page2.html.md
177
164
  - example-site/blog/2012-01-04-page3.html.md
165
+ - example-site/blog/_not_yet.html.md
166
+ - example-site/blog/_tmp/not_yet.html.md
178
167
  - example-site/pages/nonblogpage.html.md
179
168
  files:
180
169
  - .autotest
@@ -197,6 +186,8 @@ files:
197
186
  - example-site/blog/2012-01-03-page2.html.md
198
187
  - example-site/blog/2012-01-04-page3.html.md
199
188
  - example-site/blog/_config.yml
189
+ - example-site/blog/_not_yet.html.md
190
+ - example-site/blog/_tmp/not_yet.html.md
200
191
  - example-site/blog/index.html.erb
201
192
  - example-site/config.ru
202
193
  - example-site/css/colors.css.less
metadata.gz.sig CHANGED
Binary file