mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-09-22 06:01:26 +02:00
25 lines
788 B
Diff
25 lines
788 B
Diff
Patch-Source: https://github.com/apjanke/ronn-ng/issues/80
|
|
|
|
--- a/lib/ronn/document.rb.orig
|
|
+++ b/lib/ronn/document.rb
|
|
@@ -289,7 +289,7 @@
|
|
|
|
def to_yaml
|
|
require 'yaml'
|
|
- to_h.to_yaml
|
|
+ to_h.merge('date' => date.to_s).to_yaml
|
|
end
|
|
|
|
def to_json(*_args)
|
|
--- a/test/test_ronn_document.rb
|
|
+++ b/test/test_ronn_document.rb
|
|
@@ -140,7 +140,7 @@ class DocumentTest < Test::Unit::TestCase
|
|
assert_equal({
|
|
'section' => '1',
|
|
'name' => 'hello',
|
|
- 'date' => @now,
|
|
+ 'date' => @now.to_s,
|
|
'tagline' => 'hello world',
|
|
'styles' => ['man'],
|
|
'toc' => [['NAME', 'NAME']],
|