bluefeather 0.10 → 0.11
Sign up to get free protection for your applications and to get access to all the features.
- data/doc/author-and-license.html +24 -0
- data/doc/basic-usage.bfdoc +25 -1
- data/doc/basic-usage.html +296 -0
- data/doc/class-reference.html +165 -0
- data/doc/difference.html +69 -0
- data/doc/en/author-and-license.html +29 -0
- data/doc/en/basic-usage.bfdoc +56 -31
- data/doc/en/basic-usage.html +303 -0
- data/doc/en/class-reference.html +15 -0
- data/doc/en/difference.html +72 -0
- data/doc/en/format-extension.html +424 -0
- data/doc/en/index.bfdoc +1 -1
- data/doc/en/index.html +48 -0
- data/doc/en/metadata-reference.html +15 -0
- data/doc/format-extension.html +426 -0
- data/doc/index.bfdoc +1 -1
- data/doc/index.html +46 -0
- data/doc/metadata-reference.html +108 -0
- data/lib/bluefeather.rb +8 -5
- data/lib/bluefeather/cui.rb +43 -31
- data/spec/cui.rb +73 -0
- data/spec/lib/common.rb +85 -0
- metadata +17 -2
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.11"
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dice
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-02-
|
12
|
+
date: 2009-02-27 00:00:00 +09:00
|
13
13
|
default_executable:
|
14
14
|
dependencies: []
|
15
15
|
|
@@ -32,6 +32,7 @@ files:
|
|
32
32
|
- license/gpl.ja.txt
|
33
33
|
- spec/auto-link.rb
|
34
34
|
- spec/code-block.rb
|
35
|
+
- spec/cui.rb
|
35
36
|
- spec/dl.rb
|
36
37
|
- spec/escape-char.rb
|
37
38
|
- spec/footnote.rb
|
@@ -52,23 +53,37 @@ files:
|
|
52
53
|
- original-tests/data/re-overflow.txt
|
53
54
|
- original-tests/data/re-overflow2.txt
|
54
55
|
- doc/author-and-license.bfdoc
|
56
|
+
- doc/author-and-license.html
|
55
57
|
- doc/base.css
|
56
58
|
- doc/basic-usage.bfdoc
|
59
|
+
- doc/basic-usage.html
|
57
60
|
- doc/black.css
|
58
61
|
- doc/class-reference.bfdoc
|
62
|
+
- doc/class-reference.html
|
59
63
|
- doc/difference.bfdoc
|
64
|
+
- doc/difference.html
|
60
65
|
- doc/en/author-and-license.bfdoc
|
66
|
+
- doc/en/author-and-license.html
|
61
67
|
- doc/en/base.css
|
62
68
|
- doc/en/basic-usage.bfdoc
|
69
|
+
- doc/en/basic-usage.html
|
63
70
|
- doc/en/black.css
|
64
71
|
- doc/en/class-reference.bfdoc
|
72
|
+
- doc/en/class-reference.html
|
65
73
|
- doc/en/difference.bfdoc
|
74
|
+
- doc/en/difference.html
|
66
75
|
- doc/en/format-extension.bfdoc
|
76
|
+
- doc/en/format-extension.html
|
67
77
|
- doc/en/index.bfdoc
|
78
|
+
- doc/en/index.html
|
68
79
|
- doc/en/metadata-reference.bfdoc
|
80
|
+
- doc/en/metadata-reference.html
|
69
81
|
- doc/format-extension.bfdoc
|
82
|
+
- doc/format-extension.html
|
70
83
|
- doc/index.bfdoc
|
84
|
+
- doc/index.html
|
71
85
|
- doc/metadata-reference.bfdoc
|
86
|
+
- doc/metadata-reference.html
|
72
87
|
has_rdoc: false
|
73
88
|
homepage: http://ruby.morphball.net/bluefeather/
|
74
89
|
post_install_message:
|