runeblog 0.2.2 → 0.2.3
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 +4 -4
- data/lib/runeblog.rb +2 -2
- data/lib/runeblog_version.rb +1 -1
- data/test/make_blog.rb +1 -1
- data/themes/standard/post/generate.lt3 +0 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7319aa4029a51cdaf755a887f70a63b4663a39de4463daa684abddd439918d23
|
|
4
|
+
data.tar.gz: 97dc156bf377a0f8786742ecdd7e71c6436e2ffc619a25eb37557feae3928c58
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a34c2b74533359c685f06d469b57fbc869c7fc75a1945fc6e080b5b229fcb2c99ab4aa9766cacacaa1f563da865a1aee3d887de91734a1caea1433952b22cfe3
|
|
7
|
+
data.tar.gz: 7860d1f22c747fe5154c2736f9eb38654a16a310ae27934e104fcf2d944cb94769dc8ab8513cde5a73896b3e5ab65864ed7b78e86aae78309f61bb25524baf1b
|
data/lib/runeblog.rb
CHANGED
|
@@ -385,8 +385,8 @@ class RuneBlog
|
|
|
385
385
|
copy!("#{@theme}/*", "#{staging}")
|
|
386
386
|
copy(lt3, staging)
|
|
387
387
|
html = noext[5..-1]
|
|
388
|
-
livetext draft, html
|
|
389
|
-
copy(
|
|
388
|
+
livetext draft, html # livetext "foobar.lt3", "foobar.html"
|
|
389
|
+
copy(html, "../../staging/post/index.html")
|
|
390
390
|
title_line = File.readlines(draft).grep(/^.title /).first
|
|
391
391
|
title = title_line.split(" ", 2)[1]
|
|
392
392
|
excerpt = File.read("teaser.txt")
|
data/lib/runeblog_version.rb
CHANGED
data/test/make_blog.rb
CHANGED