runeblog 0.1.38 → 0.1.39
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/repl.rb +2 -2
- data/lib/runeblog_version.rb +1 -1
- 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: 62fde463d4650be5151082ff3264dac4858951cc922e374631c514e1be69496c
|
4
|
+
data.tar.gz: c21b97c8f632abb8562af9f954c4c002c960a4e184d8522a4188cddbe90555ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4017885e99583e03ef36a040b1dfc295e2d792a1fff3284ec575548d8fc3323bed79fd2e82ff6d3256fef6502e0828c8c26c657687504150c763c9cf72ef423b
|
7
|
+
data.tar.gz: c85df56291b2dc303a46975ead280669493a122e3828578bdcb95fab7f049e6d2a735bcb643b99a322ca6df741299a47bfb76ba45cc60cd860b636f3e57ba593
|
data/lib/repl.rb
CHANGED
@@ -268,7 +268,7 @@ module RuneBlog::REPL
|
|
268
268
|
puts " ", fx(str, :bold) unless testing
|
269
269
|
if posts.empty?
|
270
270
|
output! "No posts"
|
271
|
-
puts
|
271
|
+
puts " No posts" unless testing
|
272
272
|
else
|
273
273
|
posts.each do |post|
|
274
274
|
outstr " #{colored_slug(post)}\n"
|
@@ -287,7 +287,7 @@ module RuneBlog::REPL
|
|
287
287
|
drafts = @blog.drafts # current view
|
288
288
|
if drafts.empty?
|
289
289
|
output! "No drafts"
|
290
|
-
puts " No drafts" unless testing
|
290
|
+
puts "\n No drafts\n " unless testing
|
291
291
|
return [false, @out]
|
292
292
|
else
|
293
293
|
puts unless testing
|
data/lib/runeblog_version.rb
CHANGED