wallyqs-org-ruby 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (123) hide show
  1. data/.bnsignore +18 -0
  2. data/.gitignore +2 -0
  3. data/Gemfile +7 -0
  4. data/Gemfile.lock +36 -0
  5. data/History.txt +112 -0
  6. data/README.rdoc +67 -0
  7. data/Rakefile +33 -0
  8. data/TAGS +167 -0
  9. data/announcement.txt +24 -0
  10. data/bin/org-ruby +45 -0
  11. data/lib/org-ruby.rb +55 -0
  12. data/lib/org-ruby/headline.rb +110 -0
  13. data/lib/org-ruby/html_output_buffer.rb +273 -0
  14. data/lib/org-ruby/html_symbol_replace.rb +345 -0
  15. data/lib/org-ruby/line.rb +244 -0
  16. data/lib/org-ruby/output_buffer.rb +237 -0
  17. data/lib/org-ruby/parser.rb +366 -0
  18. data/lib/org-ruby/regexp_helper.rb +192 -0
  19. data/lib/org-ruby/textile_output_buffer.rb +102 -0
  20. data/lib/org-ruby/textile_symbol_replace.rb +346 -0
  21. data/lib/org-ruby/tilt.rb +29 -0
  22. data/org-ruby.gemspec +40 -0
  23. data/spec/data/freeform-example.org +113 -0
  24. data/spec/data/freeform.org +111 -0
  25. data/spec/data/hyp-planning.org +335 -0
  26. data/spec/data/remember.org +53 -0
  27. data/spec/headline_spec.rb +65 -0
  28. data/spec/html_examples/advanced-code.html +81 -0
  29. data/spec/html_examples/advanced-code.org +106 -0
  30. data/spec/html_examples/advanced-lists.html +31 -0
  31. data/spec/html_examples/advanced-lists.org +31 -0
  32. data/spec/html_examples/block_code.html +28 -0
  33. data/spec/html_examples/block_code.org +35 -0
  34. data/spec/html_examples/blockcomment.html +3 -0
  35. data/spec/html_examples/blockcomment.org +15 -0
  36. data/spec/html_examples/blockquote.html +7 -0
  37. data/spec/html_examples/blockquote.org +13 -0
  38. data/spec/html_examples/center.html +6 -0
  39. data/spec/html_examples/center.org +7 -0
  40. data/spec/html_examples/code-comment.html +18 -0
  41. data/spec/html_examples/code-comment.org +22 -0
  42. data/spec/html_examples/code-syntax.html +98 -0
  43. data/spec/html_examples/code-syntax.org +99 -0
  44. data/spec/html_examples/comment-trees.html +4 -0
  45. data/spec/html_examples/comment-trees.org +13 -0
  46. data/spec/html_examples/custom-seq-todo.html +15 -0
  47. data/spec/html_examples/custom-seq-todo.org +24 -0
  48. data/spec/html_examples/custom-todo.html +15 -0
  49. data/spec/html_examples/custom-todo.org +24 -0
  50. data/spec/html_examples/custom-typ-todo.html +15 -0
  51. data/spec/html_examples/custom-typ-todo.org +24 -0
  52. data/spec/html_examples/deflist.html +6 -0
  53. data/spec/html_examples/deflist.org +6 -0
  54. data/spec/html_examples/entities.html +4 -0
  55. data/spec/html_examples/entities.org +11 -0
  56. data/spec/html_examples/escape-pre.html +6 -0
  57. data/spec/html_examples/escape-pre.org +6 -0
  58. data/spec/html_examples/export-exclude-only.html +13 -0
  59. data/spec/html_examples/export-exclude-only.org +81 -0
  60. data/spec/html_examples/export-keywords.html +4 -0
  61. data/spec/html_examples/export-keywords.org +18 -0
  62. data/spec/html_examples/export-tags.html +8 -0
  63. data/spec/html_examples/export-tags.org +82 -0
  64. data/spec/html_examples/export-title.html +2 -0
  65. data/spec/html_examples/export-title.org +4 -0
  66. data/spec/html_examples/footnotes.html +10 -0
  67. data/spec/html_examples/footnotes.org +7 -0
  68. data/spec/html_examples/html-literal.html +2 -0
  69. data/spec/html_examples/html-literal.org +6 -0
  70. data/spec/html_examples/inline-formatting.html +20 -0
  71. data/spec/html_examples/inline-formatting.org +33 -0
  72. data/spec/html_examples/inline-images.html +10 -0
  73. data/spec/html_examples/inline-images.org +15 -0
  74. data/spec/html_examples/link-features.html +8 -0
  75. data/spec/html_examples/link-features.org +19 -0
  76. data/spec/html_examples/lists.html +23 -0
  77. data/spec/html_examples/lists.org +47 -0
  78. data/spec/html_examples/metadata-comment.html +27 -0
  79. data/spec/html_examples/metadata-comment.org +30 -0
  80. data/spec/html_examples/only-list.html +5 -0
  81. data/spec/html_examples/only-list.org +3 -0
  82. data/spec/html_examples/only-table.html +6 -0
  83. data/spec/html_examples/only-table.org +5 -0
  84. data/spec/html_examples/skip-header.html +3 -0
  85. data/spec/html_examples/skip-header.org +28 -0
  86. data/spec/html_examples/skip-table.html +4 -0
  87. data/spec/html_examples/skip-table.org +19 -0
  88. data/spec/html_examples/subsupscript-nil.html +3 -0
  89. data/spec/html_examples/subsupscript-nil.org +6 -0
  90. data/spec/html_examples/subsupscript.html +3 -0
  91. data/spec/html_examples/subsupscript.org +5 -0
  92. data/spec/html_examples/tables.html +35 -0
  93. data/spec/html_examples/tables.org +50 -0
  94. data/spec/html_examples/text.html +2 -0
  95. data/spec/html_examples/text.org +16 -0
  96. data/spec/line_spec.rb +155 -0
  97. data/spec/output_buffer_spec.rb +19 -0
  98. data/spec/parser_spec.rb +152 -0
  99. data/spec/regexp_helper_spec.rb +57 -0
  100. data/spec/spec_helper.rb +20 -0
  101. data/spec/textile_examples/block_code.org +35 -0
  102. data/spec/textile_examples/block_code.textile +29 -0
  103. data/spec/textile_examples/blockquote.org +13 -0
  104. data/spec/textile_examples/blockquote.textile +11 -0
  105. data/spec/textile_examples/center.org +7 -0
  106. data/spec/textile_examples/center.textile +6 -0
  107. data/spec/textile_examples/footnotes.org +7 -0
  108. data/spec/textile_examples/footnotes.textile +8 -0
  109. data/spec/textile_examples/keywords.org +13 -0
  110. data/spec/textile_examples/keywords.textile +11 -0
  111. data/spec/textile_examples/links.org +11 -0
  112. data/spec/textile_examples/links.textile +10 -0
  113. data/spec/textile_examples/lists.org +36 -0
  114. data/spec/textile_examples/lists.textile +20 -0
  115. data/spec/textile_examples/single-space-plain-list.org +13 -0
  116. data/spec/textile_examples/single-space-plain-list.textile +10 -0
  117. data/spec/textile_examples/tables.org +50 -0
  118. data/spec/textile_examples/tables.textile +40 -0
  119. data/spec/textile_output_buffer_spec.rb +21 -0
  120. data/tasks/test_case.rake +49 -0
  121. data/test/test_orgmode_parser.rb +0 -0
  122. data/util/gen-special-replace.el +37 -0
  123. metadata +244 -0
@@ -0,0 +1,20 @@
1
+ h1. Lists
2
+
3
+ I want to make sure I have great support for lists.
4
+
5
+ * This is an unordered list
6
+ * This continues the unordered list
7
+
8
+ And this is a paragraph *after* the list.
9
+
10
+ h2. Wrapping within the list
11
+
12
+ * This is a single-line list item in the org file.
13
+ * Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
14
+ * And this is the next item. The previous item needs to be on one line to keep @textile@ happy.
15
+ * Ditto the previous line, actually.
16
+
17
+ h2. Edge cases
18
+
19
+ * This is a single-line list.
20
+ And this is a *separate paragraph.* Note the indentation in the org file.
@@ -0,0 +1,13 @@
1
+ ** Anatomy of a BVP
2
+
3
+ Each BVP followed a simple, one-page template with the following
4
+ parts:
5
+
6
+ - Customer Summary
7
+ - Storyboard
8
+ - Requirements
9
+ - Partner teams
10
+
11
+ The following sections walk through each section and give an
12
+ example from one of our BVPs, [[http://windows/hyper-v/initiatives/Value Propositions/DynamicDatacenter-ValueProp.docx][Resource-Smart Virtualization
13
+ Infrastructure]] (also called /Dynamic Datacenter/).
@@ -0,0 +1,10 @@
1
+ h2. Anatomy of a BVP
2
+
3
+ Each BVP followed a simple, one-page template with the following parts:
4
+
5
+ * Customer Summary
6
+ * Storyboard
7
+ * Requirements
8
+ * Partner teams
9
+
10
+ The following sections walk through each section and give an example from one of our BVPs, "Resource-Smart Virtualization Infrastructure":http://windows/hyper-v/initiatives/Value%20Propositions/DynamicDatacenter-ValueProp.docx (also called _Dynamic Datacenter_).
@@ -0,0 +1,50 @@
1
+ TABLES
2
+
3
+ Different types of ORG tables.
4
+
5
+ * Simple table, no header.
6
+
7
+ | Cell one | Cell two |
8
+ | Cell three | Cell four |
9
+
10
+
11
+ * Indented table
12
+
13
+ | Cell one |
14
+ | Cell two |
15
+
16
+ And here's some paragraph content. The line breaks will need to get
17
+ removed here, but not for the tables.
18
+
19
+ * Table with header
20
+
21
+ | One | Two | Three |
22
+ |-------+-------+-------|
23
+ | Four | Five | Six |
24
+ | Seven | Eight | Nine |
25
+
26
+ The separator row should not get printed out.
27
+
28
+ * Table with complete box
29
+
30
+ |-------+-------+-------|
31
+ | One | Two | Three |
32
+ |-------+-------+-------|
33
+ | Four | Five | Six |
34
+ | Seven | Eight | Nine |
35
+ |-------+-------+-------|
36
+
37
+ Only the first row should be a header row.
38
+
39
+ * Table with extra lines
40
+
41
+ |-------+--------+--------|
42
+ | One | Two | Three |
43
+ |-------+--------+--------|
44
+ | Four | Five | Six |
45
+ | Seven | Eight | Nine |
46
+ |-------+--------+--------|
47
+ | Ten | Eleven | Twelve |
48
+ |-------+--------+--------|
49
+
50
+ Only the first row should be a header row.
@@ -0,0 +1,40 @@
1
+ TABLES
2
+
3
+ Different types of ORG tables.
4
+
5
+ h1. Simple table, no header.
6
+
7
+ | Cell one | Cell two |
8
+ | Cell three | Cell four |
9
+
10
+ h1. Indented table
11
+
12
+ | Cell one |
13
+ | Cell two |
14
+
15
+ And here's some paragraph content. The line breaks will need to get removed here, but not for the tables.
16
+
17
+ h1. Table with header
18
+
19
+ | One | Two | Three |
20
+ | Four | Five | Six |
21
+ | Seven | Eight | Nine |
22
+
23
+ The separator row should not get printed out.
24
+
25
+ h1. Table with complete box
26
+
27
+ | One | Two | Three |
28
+ | Four | Five | Six |
29
+ | Seven | Eight | Nine |
30
+
31
+ Only the first row should be a header row.
32
+
33
+ h1. Table with extra lines
34
+
35
+ | One | Two | Three |
36
+ | Four | Five | Six |
37
+ | Seven | Eight | Nine |
38
+ | Ten | Eleven | Twelve |
39
+
40
+ Only the first row should be a header row.
@@ -0,0 +1,21 @@
1
+ require File.join(File.dirname(__FILE__), %w[spec_helper])
2
+
3
+ describe Orgmode::TextileOutputBuffer do
4
+ it "should substitute / with _" do
5
+ Orgmode::TextileOutputBuffer.new("").inline_formatting("/italic/").should eql("_italic_")
6
+ end
7
+
8
+ it "should convert simple links" do
9
+ Orgmode::TextileOutputBuffer.new("").inline_formatting("[[http://www.google.com]]").should \
10
+ eql("\"http://www.google.com\":http://www.google.com")
11
+ end
12
+
13
+ it "should convert links with text" do
14
+ Orgmode::TextileOutputBuffer.new("").inline_formatting("[[http://www.google.com][Google]]").should \
15
+ eql("\"Google\":http://www.google.com")
16
+ end
17
+
18
+ it "should convert spaces in urls" do
19
+ Orgmode::TextileOutputBuffer.new("").inline_formatting("[[my url]]").should eql("\"my url\":my%20url")
20
+ end
21
+ end
@@ -0,0 +1,49 @@
1
+ require File.expand_path(
2
+ File.join(File.dirname(__FILE__), %w[.. lib org-ruby]))
3
+
4
+ namespace :testcase do
5
+ @data_directory = File.join(File.dirname(__FILE__), "../spec/html_examples")
6
+
7
+ desc "List all of the current HTML test cases"
8
+ task :list do
9
+ org_files = File.expand_path(File.join(@data_directory, "*.org" ))
10
+ files = Dir.glob(org_files)
11
+ files.each do |file|
12
+ puts File.basename(file, ".org")
13
+ end
14
+ end
15
+
16
+ desc "Accept the current org-ruby output for the test case as correct"
17
+ task :accept, :case do |t, args|
18
+ basename = args[:case]
19
+ raise "Must supply a test case name. Example: rake testcase:accept[casename]" unless basename
20
+ fname = File.expand_path(File.join(@data_directory, "#{basename}.org"))
21
+ oname = File.expand_path(File.join(@data_directory, "#{basename}.html"))
22
+ data = IO.read(fname)
23
+ puts "=== #{fname} is: ===>>>\n\n"
24
+ puts data
25
+ puts "\n\n=== ACCEPTING OUTPUT: ===>>>\n\n"
26
+ p = Orgmode::Parser.new(data)
27
+ puts p.to_html
28
+ File.open(oname, "w") do |s|
29
+ s.write(p.to_html)
30
+ end
31
+ end
32
+
33
+ desc "Look at the current org-ruby output for a test case"
34
+ task :inspect, :case do |t, args|
35
+ basename = args[:case]
36
+ raise "Must supply a test case name. Example: rake testcase:accept[casename]" unless basename
37
+ fname = File.expand_path(File.join(@data_directory, "#{basename}.org"))
38
+ data = IO.read(fname)
39
+ puts "=== #{fname} is: ===>>>\n\n"
40
+ puts data
41
+ puts "\n\n=== #{fname} converts to: ===>>>\n\n"
42
+ p = Orgmode::Parser.new(data)
43
+ puts p.to_html
44
+ end
45
+ end
46
+
47
+ desc "Alias for testcase:list"
48
+ task :testcase => ["testcase:list"]
49
+
File without changes
@@ -0,0 +1,37 @@
1
+ ;; This code creates ruby code to replace special symbols with the corresponding utf8/html code
2
+
3
+ (require 'org-entities)
4
+
5
+ (defvar gen-use-entities-user t)
6
+ (defvar gen-file-name "replace-entities.rb")
7
+
8
+ (defun generate-replace-inbuffer (what)
9
+ (let ((ll (if gen-use-entities-user
10
+ (append org-entities-user org-entities)
11
+ org-entities))
12
+ (to (if (string= what "html") 3
13
+ 6))) ; use utf8 for textile
14
+ (insert " def Orgmode.special_symbols_to_" what "(str)\n")
15
+ (dolist (entity ll)
16
+ (when (listp entity)
17
+ (let ((symb (nth to entity)))
18
+ (when (or (string= symb "\"") (string= symb "\\"))
19
+ (setq symb (concat "\\" symb)))
20
+ (insert " str.gsub!(/\\\\" (car entity) "((\\{\\})|(\\s|$))/, \"" symb "\\\\3\")\n"))))
21
+ (insert " end\n")))
22
+
23
+ (defun generate-replace (file-name what)
24
+ (when (file-exists-p file-name)
25
+ (let ((buf (find-buffer-visiting file-name)))
26
+ (when buf
27
+ (kill-buffer buf)))
28
+ (delete-file file-name))
29
+ (find-file file-name)
30
+ (insert "# Autogenerated by util/gen-special-replace.el\n\nmodule Orgmode\n")
31
+ (generate-replace-inbuffer what)
32
+ (insert "end # module Orgmode\n")
33
+ (save-buffer)
34
+ (kill-buffer))
35
+
36
+ (generate-replace "../lib/org-ruby/html_symbol_replace.rb" "html")
37
+ (generate-replace "../lib/org-ruby/textile_symbol_replace.rb" "textile")
metadata ADDED
@@ -0,0 +1,244 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: wallyqs-org-ruby
3
+ version: !ruby/object:Gem::Version
4
+ hash: 5
5
+ prerelease:
6
+ segments:
7
+ - 0
8
+ - 6
9
+ - 1
10
+ version: 0.6.1
11
+ platform: ruby
12
+ authors:
13
+ - Waldemar Quevedo
14
+ - Brian Dewey
15
+ autorequire:
16
+ bindir: bin
17
+ cert_chain: []
18
+
19
+ date: 2012-02-26 00:00:00 Z
20
+ dependencies:
21
+ - !ruby/object:Gem::Dependency
22
+ name: rubypants
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 23
30
+ segments:
31
+ - 0
32
+ - 2
33
+ - 0
34
+ version: 0.2.0
35
+ type: :runtime
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: coderay
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
42
+ requirements:
43
+ - - ">="
44
+ - !ruby/object:Gem::Version
45
+ hash: 23
46
+ segments:
47
+ - 1
48
+ - 0
49
+ - 0
50
+ version: 1.0.0
51
+ type: :runtime
52
+ version_requirements: *id002
53
+ - !ruby/object:Gem::Dependency
54
+ name: bones
55
+ prerelease: false
56
+ requirement: &id003 !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ hash: 29
62
+ segments:
63
+ - 3
64
+ - 7
65
+ - 3
66
+ version: 3.7.3
67
+ type: :development
68
+ version_requirements: *id003
69
+ description: "This gem contains Ruby routines for parsing org-mode files.The most\n\
70
+ significant thing this library does today is convert org-mode files to\n\
71
+ HTML or textile. Currently, you cannot do much to customize the\n\
72
+ conversion. The supplied textile conversion is optimized for\n\
73
+ extracting \"content\" from the orgfile as opposed to \"metadata.\" "
74
+ email:
75
+ - waldemar.quevedo@gmail.com
76
+ - bdewey@gmail.com
77
+ executables:
78
+ - org-ruby
79
+ extensions: []
80
+
81
+ extra_rdoc_files:
82
+ - History.txt
83
+ - README.rdoc
84
+ - announcement.txt
85
+ - bin/org-ruby
86
+ files:
87
+ - .bnsignore
88
+ - .gitignore
89
+ - Gemfile
90
+ - Gemfile.lock
91
+ - History.txt
92
+ - README.rdoc
93
+ - Rakefile
94
+ - TAGS
95
+ - announcement.txt
96
+ - bin/org-ruby
97
+ - lib/org-ruby.rb
98
+ - lib/org-ruby/headline.rb
99
+ - lib/org-ruby/html_output_buffer.rb
100
+ - lib/org-ruby/html_symbol_replace.rb
101
+ - lib/org-ruby/line.rb
102
+ - lib/org-ruby/output_buffer.rb
103
+ - lib/org-ruby/parser.rb
104
+ - lib/org-ruby/regexp_helper.rb
105
+ - lib/org-ruby/textile_output_buffer.rb
106
+ - lib/org-ruby/textile_symbol_replace.rb
107
+ - lib/org-ruby/tilt.rb
108
+ - org-ruby.gemspec
109
+ - spec/data/freeform-example.org
110
+ - spec/data/freeform.org
111
+ - spec/data/hyp-planning.org
112
+ - spec/data/remember.org
113
+ - spec/headline_spec.rb
114
+ - spec/html_examples/advanced-code.html
115
+ - spec/html_examples/advanced-code.org
116
+ - spec/html_examples/advanced-lists.html
117
+ - spec/html_examples/advanced-lists.org
118
+ - spec/html_examples/block_code.html
119
+ - spec/html_examples/block_code.org
120
+ - spec/html_examples/blockcomment.html
121
+ - spec/html_examples/blockcomment.org
122
+ - spec/html_examples/blockquote.html
123
+ - spec/html_examples/blockquote.org
124
+ - spec/html_examples/center.html
125
+ - spec/html_examples/center.org
126
+ - spec/html_examples/code-comment.html
127
+ - spec/html_examples/code-comment.org
128
+ - spec/html_examples/code-syntax.html
129
+ - spec/html_examples/code-syntax.org
130
+ - spec/html_examples/comment-trees.html
131
+ - spec/html_examples/comment-trees.org
132
+ - spec/html_examples/custom-seq-todo.html
133
+ - spec/html_examples/custom-seq-todo.org
134
+ - spec/html_examples/custom-todo.html
135
+ - spec/html_examples/custom-todo.org
136
+ - spec/html_examples/custom-typ-todo.html
137
+ - spec/html_examples/custom-typ-todo.org
138
+ - spec/html_examples/deflist.html
139
+ - spec/html_examples/deflist.org
140
+ - spec/html_examples/entities.html
141
+ - spec/html_examples/entities.org
142
+ - spec/html_examples/escape-pre.html
143
+ - spec/html_examples/escape-pre.org
144
+ - spec/html_examples/export-exclude-only.html
145
+ - spec/html_examples/export-exclude-only.org
146
+ - spec/html_examples/export-keywords.html
147
+ - spec/html_examples/export-keywords.org
148
+ - spec/html_examples/export-tags.html
149
+ - spec/html_examples/export-tags.org
150
+ - spec/html_examples/export-title.html
151
+ - spec/html_examples/export-title.org
152
+ - spec/html_examples/footnotes.html
153
+ - spec/html_examples/footnotes.org
154
+ - spec/html_examples/html-literal.html
155
+ - spec/html_examples/html-literal.org
156
+ - spec/html_examples/inline-formatting.html
157
+ - spec/html_examples/inline-formatting.org
158
+ - spec/html_examples/inline-images.html
159
+ - spec/html_examples/inline-images.org
160
+ - spec/html_examples/link-features.html
161
+ - spec/html_examples/link-features.org
162
+ - spec/html_examples/lists.html
163
+ - spec/html_examples/lists.org
164
+ - spec/html_examples/metadata-comment.html
165
+ - spec/html_examples/metadata-comment.org
166
+ - spec/html_examples/only-list.html
167
+ - spec/html_examples/only-list.org
168
+ - spec/html_examples/only-table.html
169
+ - spec/html_examples/only-table.org
170
+ - spec/html_examples/skip-header.html
171
+ - spec/html_examples/skip-header.org
172
+ - spec/html_examples/skip-table.html
173
+ - spec/html_examples/skip-table.org
174
+ - spec/html_examples/subsupscript-nil.html
175
+ - spec/html_examples/subsupscript-nil.org
176
+ - spec/html_examples/subsupscript.html
177
+ - spec/html_examples/subsupscript.org
178
+ - spec/html_examples/tables.html
179
+ - spec/html_examples/tables.org
180
+ - spec/html_examples/text.html
181
+ - spec/html_examples/text.org
182
+ - spec/line_spec.rb
183
+ - spec/output_buffer_spec.rb
184
+ - spec/parser_spec.rb
185
+ - spec/regexp_helper_spec.rb
186
+ - spec/spec_helper.rb
187
+ - spec/textile_examples/block_code.org
188
+ - spec/textile_examples/block_code.textile
189
+ - spec/textile_examples/blockquote.org
190
+ - spec/textile_examples/blockquote.textile
191
+ - spec/textile_examples/center.org
192
+ - spec/textile_examples/center.textile
193
+ - spec/textile_examples/footnotes.org
194
+ - spec/textile_examples/footnotes.textile
195
+ - spec/textile_examples/keywords.org
196
+ - spec/textile_examples/keywords.textile
197
+ - spec/textile_examples/links.org
198
+ - spec/textile_examples/links.textile
199
+ - spec/textile_examples/lists.org
200
+ - spec/textile_examples/lists.textile
201
+ - spec/textile_examples/single-space-plain-list.org
202
+ - spec/textile_examples/single-space-plain-list.textile
203
+ - spec/textile_examples/tables.org
204
+ - spec/textile_examples/tables.textile
205
+ - spec/textile_output_buffer_spec.rb
206
+ - tasks/test_case.rake
207
+ - test/test_orgmode_parser.rb
208
+ - util/gen-special-replace.el
209
+ homepage: http://github.com/wallyqs/org-ruby
210
+ licenses: []
211
+
212
+ post_install_message:
213
+ rdoc_options:
214
+ - --main
215
+ - README.rdoc
216
+ require_paths:
217
+ - lib
218
+ required_ruby_version: !ruby/object:Gem::Requirement
219
+ none: false
220
+ requirements:
221
+ - - ">="
222
+ - !ruby/object:Gem::Version
223
+ hash: 3
224
+ segments:
225
+ - 0
226
+ version: "0"
227
+ required_rubygems_version: !ruby/object:Gem::Requirement
228
+ none: false
229
+ requirements:
230
+ - - ">="
231
+ - !ruby/object:Gem::Version
232
+ hash: 3
233
+ segments:
234
+ - 0
235
+ version: "0"
236
+ requirements: []
237
+
238
+ rubyforge_project: org-ruby
239
+ rubygems_version: 1.8.10
240
+ signing_key:
241
+ specification_version: 3
242
+ summary: This gem contains Ruby routines for parsing org-mode files.
243
+ test_files:
244
+ - test/test_orgmode_parser.rb