bluefeather 0.20 → 0.21
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.
- data/doc/author-and-license.html +1 -1
- data/doc/en/author-and-license.html +1 -1
- data/doc/en/basic-usage.html +4 -0
- data/doc/en/format-extension.html +4 -0
- data/doc/en/index.bfdoc +1 -1
- data/doc/en/index.html +1 -1
- data/doc/format-extension.html +4 -0
- data/doc/index.bfdoc +1 -1
- data/doc/index.html +1 -1
- data/lib/bluefeather.rb +21 -8
- data/lib/bluefeather/cui.rb +16 -7
- data/spec/code-block.rb +55 -1
- data/spec/cui.rb +1 -1
- data/spec/encoding.rb +98 -0
- data/spec/text/encoding_sample_default.bfdoc +8 -0
- data/spec/text/encoding_sample_euc-jp.bfdoc +9 -0
- data/spec/text/encoding_sample_shift-jis.bfdoc +9 -0
- data/spec/text/encoding_sample_utf-8.bfdoc +9 -0
- data/spec/text/encoding_sample_utf-8n.bfdoc +9 -0
- metadata +15 -11
- data/spec/encoding_sample_eucjp.bfdoc +0 -3
- data/spec/encoding_sample_sjis.bfdoc +0 -3
- data/spec/encoding_sample_utf8.bfdoc +0 -3
data/doc/author-and-license.html
CHANGED
@@ -18,7 +18,7 @@
|
|
18
18
|
<li><a href="http://ja.wikipedia.org/wiki/GNU_General_Public_License">Wikipedia - GNU General Public License</a></li>
|
19
19
|
</ul>
|
20
20
|
|
21
|
-
<p>BlueFeather への要望、ご意見、バグ報告などがありましたら、<a href="http://ruby.morphball.net/bluefeather/">BlueFeather 配布サイト</a>よりメッセージを送信していただくか、もしくは Dice(<a href="&#
|
21
|
+
<p>BlueFeather への要望、ご意見、バグ報告などがありましたら、<a href="http://ruby.morphball.net/bluefeather/">BlueFeather 配布サイト</a>よりメッセージを送信していただくか、もしくは Dice(<a href="mailto:tetradice@gmail.com">tetradice@gmail.com</a>)までメールでご連絡していただけるよう、よろしくお願いします。</p>
|
22
22
|
|
23
23
|
</body>
|
24
24
|
</html>
|
@@ -24,7 +24,7 @@
|
|
24
24
|
<p>If you want to send requests, comments, or bug reports to BlueFeather, please
|
25
25
|
feel free to post messages from
|
26
26
|
<a href="http://ruby.morphball.net/bluefeather/index_en.html">http://ruby.morphball.net/bluefeather/index_en.html</a> or to send mail to Dice.
|
27
|
-
(<a href="ma&#
|
27
|
+
(<a href="mailto:tetradice@gmail.com">tetradice@gmail.com</a>)</p>
|
28
28
|
|
29
29
|
</body>
|
30
30
|
</html>
|
data/doc/en/basic-usage.html
CHANGED
@@ -185,6 +185,8 @@ Test paragraph.
|
|
185
185
|
|
186
186
|
<h3 id="commandline-options">Command-line Options</h3>
|
187
187
|
|
188
|
+
|
189
|
+
|
188
190
|
<pre><code>% bluefeather --help
|
189
191
|
bluefeather - Extended Markdown Converter
|
190
192
|
|
@@ -220,6 +222,8 @@ More info:
|
|
220
222
|
%
|
221
223
|
</code></pre>
|
222
224
|
|
225
|
+
|
226
|
+
|
223
227
|
<h2 id="bfheader-ea4b8233c187e9e87b21ba52d38720e8">Use in Ruby Script</h2>
|
224
228
|
|
225
229
|
<h3 id="bfheader-972e73b7a882d0802a4e3a16946a2f94">Basic</h3>
|
@@ -166,9 +166,13 @@ line same as it is parsed as code-block.
|
|
166
166
|
</code></pre>
|
167
167
|
|
168
168
|
<blockquote>
|
169
|
+
|
170
|
+
|
169
171
|
<pre><code>A range from a line which starts with three or more tildes (~) to another
|
170
172
|
line same as it is parsed as code-block.
|
171
173
|
</code></pre>
|
174
|
+
|
175
|
+
|
172
176
|
</blockquote>
|
173
177
|
|
174
178
|
<h3 id="bfheader-51c45b795d5d18a3e4e0c37e8b20a141">Table</h3>
|
data/doc/en/index.bfdoc
CHANGED
@@ -10,7 +10,7 @@ BlueFeather Manual
|
|
10
10
|
|
11
11
|
-> [Japanese version (original)](../index.html)
|
12
12
|
|
13
|
-
(2009-05-
|
13
|
+
(2009-05-15: this document based on version 0.21)
|
14
14
|
|
15
15
|
BlueFeather is software for converting text written by extended Markdown like
|
16
16
|
[PHP Markdown Extra][] to html. It is pair of command-line tool and pure Ruby
|
data/doc/en/index.html
CHANGED
@@ -12,7 +12,7 @@
|
|
12
12
|
|
13
13
|
<p>-> <a href="../index.html">Japanese version (original)</a></p>
|
14
14
|
|
15
|
-
<p>(2009-05-
|
15
|
+
<p>(2009-05-15: this document based on version 0.21)</p>
|
16
16
|
|
17
17
|
<p>BlueFeather is software for converting text written by extended Markdown like
|
18
18
|
<a href="http://michelf.com/projects/php-markdown/extra/">PHP Markdown Extra</a> to html. It is pair of command-line tool and pure Ruby
|
data/doc/format-extension.html
CHANGED
data/doc/index.bfdoc
CHANGED
data/doc/index.html
CHANGED
@@ -13,7 +13,7 @@
|
|
13
13
|
|
14
14
|
<p>→ <a href="en/index.html">English version</a></p>
|
15
15
|
|
16
|
-
<p>(2009-05-
|
16
|
+
<p>(2009-05-15 バージョン 0.21 準拠)</p>
|
17
17
|
|
18
18
|
<p>BlueFeather は、拡張 Markdown 記法で書かれたテキストを html に変換するソフトウェアです。
|
19
19
|
コマンドラインツールと、Ruby スクリプト内で変換を行うためのライブラリがセットになっています。</p>
|
data/lib/bluefeather.rb
CHANGED
@@ -42,8 +42,13 @@ require 'uri'
|
|
42
42
|
|
43
43
|
|
44
44
|
module BlueFeather
|
45
|
-
VERSION = '0.
|
46
|
-
VERSION_NUMBER = 0.
|
45
|
+
VERSION = '0.21'
|
46
|
+
VERSION_NUMBER = 0.21
|
47
|
+
RELEASE_DATE = '2009-05-16'
|
48
|
+
VERSION_LABEL = "#{VERSION} (#{RELEASE_DATE})"
|
49
|
+
|
50
|
+
UTF8_BOM = "\xef\xbb\xbf"
|
51
|
+
UTF8_BOM_PATTERN = /^#{UTF8_BOM}/
|
47
52
|
|
48
53
|
|
49
54
|
# Fancy methods
|
@@ -207,11 +212,18 @@ module BlueFeather
|
|
207
212
|
|
208
213
|
# get headers
|
209
214
|
pos_before_gets = nil
|
215
|
+
first_line = true
|
210
216
|
|
211
217
|
loop do
|
212
218
|
pos_before_gets = input.pos
|
213
|
-
|
214
219
|
line = input.gets
|
220
|
+
|
221
|
+
# cut UTF-8 BOM
|
222
|
+
if first_line and line =~ UTF8_BOM_PATTERN then
|
223
|
+
line.slice!(UTF8_BOM_PATTERN)
|
224
|
+
end
|
225
|
+
first_line = false
|
226
|
+
|
215
227
|
if line and line.chomp =~ HEADER_PATTERN then
|
216
228
|
key = $1.downcase; value = $2
|
217
229
|
|
@@ -222,6 +234,7 @@ module BlueFeather
|
|
222
234
|
|
223
235
|
# rewind (reason => [ruby-list:45988])
|
224
236
|
input.pos = first_pos
|
237
|
+
first_line = true
|
225
238
|
else
|
226
239
|
$KCODE = kc
|
227
240
|
end
|
@@ -420,12 +433,14 @@ module BlueFeather
|
|
420
433
|
# Simplify blank lines
|
421
434
|
text.gsub!( /^ +$/, '' )
|
422
435
|
@log.debug "Tabs -> spaces/blank lines stripped: %p" % text
|
436
|
+
|
423
437
|
|
424
438
|
# Replace HTML blocks with placeholders
|
425
439
|
text = hide_html_blocks( text, rs )
|
426
440
|
@log.debug "Hid HTML blocks: %p" % text
|
427
441
|
@log.debug "Render state: %p" % rs
|
428
442
|
|
443
|
+
|
429
444
|
# Strip footnote definitions, store in render state
|
430
445
|
text = strip_footnote_definitions( text, rs )
|
431
446
|
@log.debug "Stripped footnote definitions: %p" % text
|
@@ -437,8 +452,6 @@ module BlueFeather
|
|
437
452
|
@log.debug "Stripped link definitions: %p" % text
|
438
453
|
@log.debug "Render state: %p" % rs
|
439
454
|
|
440
|
-
|
441
|
-
|
442
455
|
# Escape meta-characters
|
443
456
|
text = escape_special_chars( text )
|
444
457
|
@log.debug "Escaped special characters: %p" % text
|
@@ -622,8 +635,8 @@ module BlueFeather
|
|
622
635
|
|
623
636
|
@log.debug "Applying block transforms to:\n %p" % str
|
624
637
|
text = str
|
625
|
-
text = pretransform_block_separators(text, rs)
|
626
638
|
text = pretransform_fenced_code_blocks( text, rs )
|
639
|
+
text = pretransform_block_separators(text, rs)
|
627
640
|
|
628
641
|
text = transform_headers( text, rs )
|
629
642
|
text = transform_toc(text, rs)
|
@@ -1270,7 +1283,7 @@ module BlueFeather
|
|
1270
1283
|
|
1271
1284
|
# Pattern for matching codeblocks
|
1272
1285
|
CodeBlockRegexp = %r{
|
1273
|
-
(?:\n\n|\A)
|
1286
|
+
(?:\n\n|\A|\A\n)
|
1274
1287
|
( # $1 = the code block
|
1275
1288
|
(?:
|
1276
1289
|
(?:[ ]{#{TabWidth}} | \t) # a tab or tab-width of spaces
|
@@ -1311,7 +1324,7 @@ module BlueFeather
|
|
1311
1324
|
@log.debug " Transforming fenced code blocks => standard code blocks"
|
1312
1325
|
|
1313
1326
|
str.gsub( FencedCodeBlockRegexp ) {|block|
|
1314
|
-
"\n" +
|
1327
|
+
"\n~\n\n" + indent($2) + "\n~\n\n"
|
1315
1328
|
}
|
1316
1329
|
end
|
1317
1330
|
|
data/lib/bluefeather/cui.rb
CHANGED
@@ -95,7 +95,7 @@ More info:
|
|
95
95
|
op.on('-q', '--quiet'){ message_out = StringIO.new }
|
96
96
|
op.on('--suffix .SUF', String){|x| suffix = x}
|
97
97
|
op.on('--version'){
|
98
|
-
@stdout.puts "bluefeather #{
|
98
|
+
@stdout.puts "bluefeather #{VERSION_LABEL}"
|
99
99
|
return false
|
100
100
|
}
|
101
101
|
op.on('-h', '--help'){
|
@@ -110,7 +110,7 @@ More info:
|
|
110
110
|
return false
|
111
111
|
end
|
112
112
|
|
113
|
-
message_out.puts "default encoding: #{encoding}"
|
113
|
+
message_out.puts "default encoding: #{encoding}" if verbose
|
114
114
|
|
115
115
|
unless defined?(Encoding) then
|
116
116
|
# ruby 1.8 or earlier
|
@@ -177,16 +177,22 @@ More info:
|
|
177
177
|
end
|
178
178
|
|
179
179
|
# parse
|
180
|
+
parser = BlueFeather::Parser.new
|
181
|
+
this_encoding = nil
|
180
182
|
parsing_sec = Benchmark.realtime{
|
181
183
|
case current_format
|
182
184
|
when DOCUMENT
|
183
|
-
|
184
|
-
|
185
|
+
doc = nil
|
186
|
+
open(src, 'r'){|f|
|
187
|
+
doc = BlueFeather::Document.parse_io(f, encoding)
|
188
|
+
}
|
189
|
+
html = parser.document_to_html(doc)
|
190
|
+
this_encoding = doc.encoding_type
|
185
191
|
when TEXT
|
186
|
-
message_out.puts "[text] #{src}" if verbose
|
187
192
|
open_mode = (defined?(Encoding) ? "r:#{encoding}" : 'r')
|
188
193
|
text = src.open(open_mode){|x| x.read}
|
189
|
-
html =
|
194
|
+
html = parser.parse_text(text)
|
195
|
+
this_encoding = encoding
|
190
196
|
end
|
191
197
|
}
|
192
198
|
|
@@ -197,7 +203,10 @@ More info:
|
|
197
203
|
message_out.puts "#{src} => #{dest} (#{File.size(dest)} byte)"
|
198
204
|
|
199
205
|
if verbose then
|
200
|
-
message_out.puts
|
206
|
+
message_out.puts " Format: #{current_format}"
|
207
|
+
message_out.puts " Encoding: #{this_encoding}"
|
208
|
+
message_out.puts sprintf(' Parsing Time: %g sec', parsing_sec)
|
209
|
+
message_out.puts
|
201
210
|
end
|
202
211
|
end # if html
|
203
212
|
end # if ext == suffix
|
data/spec/code-block.rb
CHANGED
@@ -1,7 +1,6 @@
|
|
1
1
|
require 'pathname'
|
2
2
|
require(Pathname.new(__FILE__).parent + 'lib/common.rb')
|
3
3
|
|
4
|
-
|
5
4
|
describe 'Normal Code Block:' do
|
6
5
|
before(:each) do
|
7
6
|
@bf = BlueFeather::Parser.new
|
@@ -57,6 +56,8 @@ describe 'Fenced Code Block:' do
|
|
57
56
|
end
|
58
57
|
end
|
59
58
|
|
59
|
+
|
60
|
+
|
60
61
|
describe 'Many Symbols:' do
|
61
62
|
include Examples
|
62
63
|
before(:all) do
|
@@ -85,7 +86,60 @@ describe 'Fenced Code Block:' do
|
|
85
86
|
end
|
86
87
|
end
|
87
88
|
|
89
|
+
end
|
90
|
+
|
91
|
+
|
92
|
+
describe '0.20 Bug:' do
|
93
|
+
describe 'Last-line Header:' do
|
94
|
+
before(:all) do
|
95
|
+
@src = "~~~\nFenced Code\nBlock\n# Last-line header\n~~~"
|
96
|
+
end
|
97
|
+
|
98
|
+
specify 'overview' do
|
99
|
+
@doc.should have_elements(1, 'pre code')
|
100
|
+
@doc.should_not have_element('p')
|
101
|
+
@doc.should_not have_element('h1')
|
102
|
+
end
|
103
|
+
|
104
|
+
specify 'body' do
|
105
|
+
@doc.at('pre code').inner_text.should == "Fenced Code\nBlock\n# Last-line header\n"
|
106
|
+
end
|
107
|
+
end
|
88
108
|
|
109
|
+
describe 'Definition List:' do
|
110
|
+
before(:all) do
|
111
|
+
@src = "~~~\nFenced Code\nBlock\n: dd\n~~~"
|
112
|
+
end
|
113
|
+
|
114
|
+
specify 'overview' do
|
115
|
+
@doc.should have_elements(1, 'pre code')
|
116
|
+
@doc.should_not have_element('p')
|
117
|
+
@doc.should_not have_element('dl')
|
118
|
+
end
|
119
|
+
|
120
|
+
specify 'body' do
|
121
|
+
@doc.at('pre code').inner_text.should == "Fenced Code\nBlock\n: dd\n"
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
describe 'Code block from second line:' do
|
126
|
+
before(:all) do
|
127
|
+
@src = "\n a\n b"
|
128
|
+
end
|
129
|
+
|
130
|
+
specify 'overview' do
|
131
|
+
@doc.should have_elements(1, 'pre code')
|
132
|
+
@doc.should_not have_element('p')
|
133
|
+
end
|
134
|
+
|
135
|
+
specify 'body' do
|
136
|
+
@doc.at('pre code').inner_text.should == "a\nb\n"
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
|
141
|
+
|
89
142
|
end
|
143
|
+
|
90
144
|
|
91
145
|
end
|
data/spec/cui.rb
CHANGED
@@ -40,7 +40,7 @@ describe 'CUI:' do
|
|
40
40
|
|
41
41
|
specify '--version' do
|
42
42
|
@cui.run(%w(--version unknown-file))
|
43
|
-
@cui.should wrote_to_stdout("bluefeather #{BlueFeather::
|
43
|
+
@cui.should wrote_to_stdout("bluefeather #{BlueFeather::VERSION_LABEL}\n")
|
44
44
|
@cui.should_not wrote_to_stderr
|
45
45
|
end
|
46
46
|
|
data/spec/encoding.rb
ADDED
@@ -0,0 +1,98 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
require 'pathname'
|
4
|
+
require 'kconv'
|
5
|
+
require(Pathname.new(__FILE__).parent + 'lib/common.rb')
|
6
|
+
|
7
|
+
|
8
|
+
describe 'Encoding:' do
|
9
|
+
before(:each) do
|
10
|
+
@html = BlueFeather.parse_document_file(Pathname.new(__FILE__).parent + 'text/' + @src_name)
|
11
|
+
@doc = Hpricot(@html)
|
12
|
+
end
|
13
|
+
|
14
|
+
share_as :Base do
|
15
|
+
specify 'header parse - css' do
|
16
|
+
@doc.should have_element('link[@rel="stylesheet"][@href="style.css"]')
|
17
|
+
end
|
18
|
+
|
19
|
+
specify 'header parse - encoding' do
|
20
|
+
@doc.should have_element(%Q|meta[@http-equiv="Content-Type"][@content="text/html; charset=#{@charset}"]|)
|
21
|
+
end
|
22
|
+
|
23
|
+
specify 'header parse - title' do
|
24
|
+
base = '日本語の題名'.kconv(@kconv_encoding, Kconv::UTF8)
|
25
|
+
@doc.at('title').inner_html.should == base
|
26
|
+
end
|
27
|
+
|
28
|
+
specify 'content parse - p' do
|
29
|
+
base = 'このテキストファイルは、エンコーディングテスト用のテキストファイルです。'.kconv(@kconv_encoding, Kconv::UTF8)
|
30
|
+
@doc.at('p').inner_html.should == base
|
31
|
+
end
|
32
|
+
|
33
|
+
specify 'content parse - ul' do
|
34
|
+
@doc.should have_elements(1, 'ul')
|
35
|
+
|
36
|
+
items = @doc.search('ul li')
|
37
|
+
%w(項目1 項目2 項目3).each_with_index do |str, i|
|
38
|
+
items[i].inner_html.should == str.kconv(@kconv_encoding, Kconv::UTF8)
|
39
|
+
end
|
40
|
+
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
|
45
|
+
|
46
|
+
describe 'Default:' do
|
47
|
+
include Base
|
48
|
+
|
49
|
+
before(:all) do
|
50
|
+
@src_name = 'encoding_sample_default.bfdoc'
|
51
|
+
@charset = 'utf-8'
|
52
|
+
@kconv_encoding = Kconv::UTF8
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
|
57
|
+
describe 'UTF-8 (BOM):' do
|
58
|
+
include Base
|
59
|
+
|
60
|
+
before(:all) do
|
61
|
+
@src_name = 'encoding_sample_utf-8.bfdoc'
|
62
|
+
@charset = 'utf-8'
|
63
|
+
@kconv_encoding = Kconv::UTF8
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
|
68
|
+
describe 'UTF-8N:' do
|
69
|
+
include Base
|
70
|
+
|
71
|
+
before(:all) do
|
72
|
+
@src_name = 'encoding_sample_utf-8n.bfdoc'
|
73
|
+
@charset = 'utf-8'
|
74
|
+
@kconv_encoding = Kconv::UTF8
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
|
79
|
+
describe 'Shift-JIS:' do
|
80
|
+
include Base
|
81
|
+
|
82
|
+
before(:all) do
|
83
|
+
@src_name = 'encoding_sample_shift-jis.bfdoc'
|
84
|
+
@charset = 'shift_jis'
|
85
|
+
@kconv_encoding = Kconv::SJIS
|
86
|
+
end
|
87
|
+
end
|
88
|
+
|
89
|
+
describe 'EUC-JP:' do
|
90
|
+
include Base
|
91
|
+
|
92
|
+
before(:all) do
|
93
|
+
@src_name = 'encoding_sample_euc-jp.bfdoc'
|
94
|
+
@charset = 'euc-jp'
|
95
|
+
@kconv_encoding = Kconv::EUC
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bluefeather
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: "0.
|
4
|
+
version: "0.21"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dice
|
@@ -9,11 +9,12 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-05-
|
12
|
+
date: 2009-05-16 00:00:00 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
16
|
-
description: BlueFeather is software for converting text written by extended Markdown to
|
16
|
+
description: " BlueFeather is software for converting text written by extended Markdown to\n\
|
17
|
+
html. It is pair of command-line tool and pure Ruby library.\n"
|
17
18
|
email: tetradice@gmail.com
|
18
19
|
executables:
|
19
20
|
- bluefeather
|
@@ -34,15 +35,17 @@ files:
|
|
34
35
|
- spec/code-block.rb
|
35
36
|
- spec/cui.rb
|
36
37
|
- spec/dl.rb
|
37
|
-
- spec/
|
38
|
-
- spec/encoding_sample_sjis.bfdoc
|
39
|
-
- spec/encoding_sample_utf8.bfdoc
|
38
|
+
- spec/encoding.rb
|
40
39
|
- spec/escape-char.rb
|
41
40
|
- spec/footnote.rb
|
42
41
|
- spec/header-id.rb
|
43
|
-
- spec/lib
|
44
42
|
- spec/lib/common.rb
|
45
43
|
- spec/table.rb
|
44
|
+
- spec/text/encoding_sample_default.bfdoc
|
45
|
+
- spec/text/encoding_sample_euc-jp.bfdoc
|
46
|
+
- spec/text/encoding_sample_shift-jis.bfdoc
|
47
|
+
- spec/text/encoding_sample_utf-8.bfdoc
|
48
|
+
- spec/text/encoding_sample_utf-8n.bfdoc
|
46
49
|
- spec/toc.rb
|
47
50
|
- spec/warning.rb
|
48
51
|
- original-tests/00_Class.tests.rb
|
@@ -50,7 +53,6 @@ files:
|
|
50
53
|
- original-tests/10_Bug.tests.rb
|
51
54
|
- original-tests/15_Contrib.tests.rb
|
52
55
|
- original-tests/bftestcase.rb
|
53
|
-
- original-tests/data
|
54
56
|
- original-tests/data/antsugar.txt
|
55
57
|
- original-tests/data/ml-announce.txt
|
56
58
|
- original-tests/data/re-overflow.txt
|
@@ -91,8 +93,10 @@ files:
|
|
91
93
|
- doc/index.html
|
92
94
|
- doc/metadata-reference.bfdoc
|
93
95
|
- doc/metadata-reference.html
|
94
|
-
has_rdoc:
|
96
|
+
has_rdoc: true
|
95
97
|
homepage: http://ruby.morphball.net/bluefeather/
|
98
|
+
licenses: []
|
99
|
+
|
96
100
|
post_install_message:
|
97
101
|
rdoc_options: []
|
98
102
|
|
@@ -113,9 +117,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
117
|
requirements: []
|
114
118
|
|
115
119
|
rubyforge_project: bluefeather
|
116
|
-
rubygems_version: 1.3.
|
120
|
+
rubygems_version: 1.3.3
|
117
121
|
signing_key:
|
118
|
-
specification_version:
|
122
|
+
specification_version: 3
|
119
123
|
summary: Extend Markdown Converter
|
120
124
|
test_files: []
|
121
125
|
|