nishidayuya-rd2odt 0.0.0 → 0.0.1
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/FUTURE +63 -0
- data/LICENSE +21 -0
- data/NEWS +36 -0
- data/README +78 -0
- data/Rakefile +49 -0
- data/doc/sample/body-text.rd +5 -0
- data/doc/sample/enum-list-over-headline-multi-level.rd +10 -0
- data/doc/sample/enum-list-over-headline.rd +9 -0
- data/doc/sample/enum-list-over-item-list-multi-level-2.rd +9 -0
- data/doc/sample/enum-list-over-item-list-multi-level.rd +8 -0
- data/doc/sample/enum-list-over-item-list.rd +7 -0
- data/doc/sample/headline.rd +60 -0
- data/doc/sample/include.rd +21 -0
- data/doc/sample/list.rd +22 -0
- data/doc/sample/multi-paragraph.rd +12 -0
- data/doc/sample/verbatim.rd +8 -0
- data/doc/sample.rd.ja +75 -0
- data/doc/sample.rd.ja.ott +0 -0
- data/doc/specification.ja.rd +35 -0
- data/lib/rd2odt.rb +610 -0
- data/rd2odt.gemspec +63 -0
- data/setup.rb +1585 -0
- data/test/functional/rd2odt-spec.rb +733 -0
- data/test/test-helper.rb +8 -0
- data/test/unit/rd2odt-spec.rb +829 -0
- metadata +31 -5
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: nishidayuya-rd2odt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yuya.Nishida.
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-04-01 00:00:00 -07:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies: []
|
|
15
15
|
|
|
@@ -21,8 +21,34 @@ extensions: []
|
|
|
21
21
|
|
|
22
22
|
extra_rdoc_files: []
|
|
23
23
|
|
|
24
|
-
files:
|
|
25
|
-
|
|
24
|
+
files:
|
|
25
|
+
- bin/rd2odt
|
|
26
|
+
- lib/rd2odt.rb
|
|
27
|
+
- doc/sample.rd.ja
|
|
28
|
+
- doc/sample.rd.ja.ott
|
|
29
|
+
- doc/sample.rd.ja.pdf
|
|
30
|
+
- doc/sample/body-text.rd
|
|
31
|
+
- doc/sample/enum-list-over-headline-multi-level.rd
|
|
32
|
+
- doc/sample/enum-list-over-headline.rd
|
|
33
|
+
- doc/sample/enum-list-over-item-list-multi-level-2.rd
|
|
34
|
+
- doc/sample/enum-list-over-item-list-multi-level.rd
|
|
35
|
+
- doc/sample/enum-list-over-item-list.rd
|
|
36
|
+
- doc/sample/headline.rd
|
|
37
|
+
- doc/sample/include.rd
|
|
38
|
+
- doc/sample/list.rd
|
|
39
|
+
- doc/sample/multi-paragraph.rd
|
|
40
|
+
- doc/sample/verbatim.rd
|
|
41
|
+
- doc/specification.ja.rd
|
|
42
|
+
- test/functional/rd2odt-spec.rb
|
|
43
|
+
- test/test-helper.rb
|
|
44
|
+
- test/unit/rd2odt-spec.rb
|
|
45
|
+
- rd2odt.gemspec
|
|
46
|
+
- Rakefile
|
|
47
|
+
- README
|
|
48
|
+
- FUTURE
|
|
49
|
+
- NEWS
|
|
50
|
+
- LICENSE
|
|
51
|
+
- setup.rb
|
|
26
52
|
has_rdoc: false
|
|
27
53
|
homepage: http://rubyforge.org/projects/rd2odt/
|
|
28
54
|
post_install_message:
|
|
@@ -34,7 +60,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
34
60
|
requirements:
|
|
35
61
|
- - ">="
|
|
36
62
|
- !ruby/object:Gem::Version
|
|
37
|
-
version: 1.8.
|
|
63
|
+
version: 1.8.7
|
|
38
64
|
version:
|
|
39
65
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
66
|
requirements:
|