mathtype 0.0.8 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +3 -0
  3. data/.travis.yml +7 -0
  4. data/Rakefile +8 -0
  5. data/lib/file_parser/ole.rb +15 -0
  6. data/lib/file_parser/parser.rb +19 -0
  7. data/lib/file_parser/wmf.rb +28 -0
  8. data/lib/mathtype.rb +30 -7
  9. data/lib/mathtype/version.rb +1 -1
  10. data/lib/records/bintypes.rb +18 -0
  11. data/lib/records/mtef.rb +8 -114
  12. data/lib/records/nudge.rb +9 -5
  13. data/lib/records/ruler.rb +1 -1
  14. data/lib/records/typesizes.rb +5 -10
  15. data/lib/records3/char.rb +53 -0
  16. data/lib/records3/embell.rb +109 -0
  17. data/lib/records3/font.rb +27 -0
  18. data/lib/records3/line.rb +47 -0
  19. data/lib/records3/matrix.rb +80 -0
  20. data/lib/records3/mtef.rb +97 -0
  21. data/lib/records3/options.rb +5 -0
  22. data/lib/records3/pile.rb +43 -0
  23. data/lib/records3/size.rb +75 -0
  24. data/lib/records3/snapshot.rb +19 -0
  25. data/lib/records3/tmpl.rb +751 -0
  26. data/lib/{records → records5}/char.rb +6 -12
  27. data/lib/{records → records5}/color.rb +1 -1
  28. data/lib/{records → records5}/color_def.rb +8 -8
  29. data/lib/{records → records5}/embell.rb +2 -2
  30. data/lib/{records → records5}/encoding_def.rb +1 -1
  31. data/lib/{records → records5}/eqn_prefs.rb +2 -2
  32. data/lib/{records → records5}/font_def.rb +1 -1
  33. data/lib/{records → records5}/font_style_def.rb +1 -1
  34. data/lib/{records → records5}/future.rb +1 -1
  35. data/lib/{records → records5}/line.rb +3 -3
  36. data/lib/{records → records5}/matrix.rb +11 -3
  37. data/lib/records5/mtef.rb +129 -0
  38. data/lib/{records → records5}/pile.rb +2 -2
  39. data/lib/{records → records5}/size.rb +9 -7
  40. data/lib/records5/snapshot.rb +19 -0
  41. data/lib/{records → records5}/tmpl.rb +2 -2
  42. data/spec/fixtures/expected/mathtype3/ceil.xml +38 -0
  43. data/spec/fixtures/expected/mathtype3/fence.xml +77 -0
  44. data/spec/fixtures/expected/mathtype3/floor.xml +38 -0
  45. data/spec/fixtures/expected/mathtype3/frac.xml +136 -0
  46. data/spec/fixtures/expected/mathtype3/large_nudge.xml +135 -0
  47. data/spec/fixtures/expected/mathtype3/lim_embell.xml +247 -0
  48. data/spec/fixtures/expected/mathtype3/matrix_2x1.xml +500 -0
  49. data/spec/fixtures/expected/mathtype3/pile.xml +188 -0
  50. data/spec/fixtures/expected/mathtype3/sigma_subsup.xml +46 -0
  51. data/spec/fixtures/expected/mathtype3/small_nudge.xml +90 -0
  52. data/spec/fixtures/expected/mathtype3/sqrt.xml +132 -0
  53. data/spec/fixtures/expected/{299.xml → mathtype5/299.xml} +30 -15
  54. data/spec/fixtures/expected/{arrows.xml → mathtype5/arrows.xml} +30 -15
  55. data/spec/fixtures/expected/{embedded.xml → mathtype5/embedded.xml} +29 -14
  56. data/spec/fixtures/expected/{embellishments.xml → mathtype5/embellishments.xml} +30 -15
  57. data/spec/fixtures/expected/{equation1.xml → mathtype5/equation1.xml} +30 -15
  58. data/spec/fixtures/expected/{equation10.xml → mathtype5/equation10.xml} +30 -15
  59. data/spec/fixtures/expected/{equation11.xml → mathtype5/equation11.xml} +30 -15
  60. data/spec/fixtures/expected/{equation12.xml → mathtype5/equation12.xml} +30 -15
  61. data/spec/fixtures/expected/{equation13.xml → mathtype5/equation13.xml} +30 -15
  62. data/spec/fixtures/expected/{equation2.xml → mathtype5/equation2.xml} +30 -15
  63. data/spec/fixtures/expected/{equation3.xml → mathtype5/equation3.xml} +30 -15
  64. data/spec/fixtures/expected/{equation4.xml → mathtype5/equation4.xml} +30 -15
  65. data/spec/fixtures/expected/{equation5.xml → mathtype5/equation5.xml} +30 -15
  66. data/spec/fixtures/expected/{equation6.xml → mathtype5/equation6.xml} +30 -15
  67. data/spec/fixtures/expected/{equation7.xml → mathtype5/equation7.xml} +30 -15
  68. data/spec/fixtures/expected/{equation8.xml → mathtype5/equation8.xml} +30 -15
  69. data/spec/fixtures/expected/{equation9.xml → mathtype5/equation9.xml} +30 -15
  70. data/spec/fixtures/expected/{fences.xml → mathtype5/fences.xml} +30 -15
  71. data/spec/fixtures/expected/{integrals.xml → mathtype5/integrals.xml} +30 -15
  72. data/spec/fixtures/expected/mathtype5/matrix-border.xml +365 -0
  73. data/spec/fixtures/expected/mathtype5/matrix.xml +382 -0
  74. data/spec/fixtures/expected/{sizes.xml → mathtype5/sizes.xml} +30 -15
  75. data/spec/fixtures/input/mathtype3/ceil.bin +0 -0
  76. data/spec/fixtures/input/mathtype3/fence.bin +0 -0
  77. data/spec/fixtures/input/mathtype3/floor.bin +0 -0
  78. data/spec/fixtures/input/mathtype3/frac.bin +0 -0
  79. data/spec/fixtures/input/mathtype3/large_nudge.bin +0 -0
  80. data/spec/fixtures/input/mathtype3/lim_embell.bin +0 -0
  81. data/spec/fixtures/input/mathtype3/matrix_2x1.bin +0 -0
  82. data/spec/fixtures/input/mathtype3/pile.bin +0 -0
  83. data/spec/fixtures/input/mathtype3/sigma_subsup.bin +0 -0
  84. data/spec/fixtures/input/mathtype3/small_nudge.bin +0 -0
  85. data/spec/fixtures/input/mathtype3/sqrt.bin +0 -0
  86. data/spec/fixtures/input/{299.bin → mathtype5/299.bin} +0 -0
  87. data/spec/fixtures/input/{arrows.bin → mathtype5/arrows.bin} +0 -0
  88. data/spec/fixtures/input/{embedded.bin → mathtype5/embedded.bin} +0 -0
  89. data/spec/fixtures/input/{embellishments.bin → mathtype5/embellishments.bin} +0 -0
  90. data/spec/fixtures/input/{equation1.bin → mathtype5/equation1.bin} +0 -0
  91. data/spec/fixtures/input/{equation10.bin → mathtype5/equation10.bin} +0 -0
  92. data/spec/fixtures/input/{equation11.bin → mathtype5/equation11.bin} +0 -0
  93. data/spec/fixtures/input/{equation12.bin → mathtype5/equation12.bin} +0 -0
  94. data/spec/fixtures/input/{equation13.bin → mathtype5/equation13.bin} +0 -0
  95. data/spec/fixtures/input/{equation2.bin → mathtype5/equation2.bin} +0 -0
  96. data/spec/fixtures/input/{equation3.bin → mathtype5/equation3.bin} +0 -0
  97. data/spec/fixtures/input/{equation4.bin → mathtype5/equation4.bin} +0 -0
  98. data/spec/fixtures/input/{equation5.bin → mathtype5/equation5.bin} +0 -0
  99. data/spec/fixtures/input/{equation6.bin → mathtype5/equation6.bin} +0 -0
  100. data/spec/fixtures/input/{equation7.bin → mathtype5/equation7.bin} +0 -0
  101. data/spec/fixtures/input/{equation8.bin → mathtype5/equation8.bin} +0 -0
  102. data/spec/fixtures/input/{equation9.bin → mathtype5/equation9.bin} +0 -0
  103. data/spec/fixtures/input/{fences.bin → mathtype5/fences.bin} +0 -0
  104. data/spec/fixtures/input/{integrals.bin → mathtype5/integrals.bin} +0 -0
  105. data/spec/fixtures/input/mathtype5/matrix-border.bin +0 -0
  106. data/spec/fixtures/input/mathtype5/matrix.bin +0 -0
  107. data/spec/fixtures/input/{sizes.bin → mathtype5/sizes.bin} +0 -0
  108. data/spec/mathtype_spec.rb +11 -9
  109. data/test-mathtype.rb +2 -0
  110. metadata +168 -97
@@ -2,15 +2,17 @@ require "spec_helper"
2
2
 
3
3
  require "pry"
4
4
  RSpec.describe Mathtype do
5
- Dir.glob("spec/fixtures/input/*.bin") do |equation|
6
- it "converted #{equation} matches expected output" do
7
- xml = Mathtype::Converter.new(equation).to_xml
8
- expected_xml = "#{File.basename(equation, ".*")}.xml"
9
- # File.open("spec/fixtures/expected/" + expected_xml, "w+") do |file|
10
- # file.write xml
11
- # end
12
- expected = File.open("spec/fixtures/expected/" + expected_xml).read
13
- expect(xml).to eq(expected)
5
+ Dir.glob("spec/fixtures/input/mathtype*") do |dir|
6
+ Dir.glob("#{dir}/*.bin") do |equation|
7
+ it "converted #{equation} matches expected output" do
8
+ xml = Mathtype::Converter.new(equation).to_xml
9
+ expected_xml = "#{File.basename(equation, ".*")}.xml"
10
+ # File.open("spec/fixtures/expected/" + expected_xml, "w+") do |file|
11
+ # file.write xml
12
+ # end
13
+ expected = File.open(dir.gsub("input","expected") + "/" + expected_xml).read
14
+ expect(xml).to eq(expected)
15
+ end
14
16
  end
15
17
  end
16
18
  end
@@ -0,0 +1,2 @@
1
+ require_relative 'lib/mathtype'
2
+ Mathtype::Converter.new("/home/sbulka/sandbox/normen/18379/oleObject3.bin").to_xml
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mathtype
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.8
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jure Triglav
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-27 00:00:00.000000000 Z
11
+ date: 2017-09-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -119,75 +119,120 @@ extra_rdoc_files: []
119
119
  files:
120
120
  - ".gitignore"
121
121
  - ".rspec"
122
+ - ".travis.yml"
122
123
  - Gemfile
123
124
  - LICENSE.txt
124
125
  - README.md
125
126
  - Rakefile
127
+ - lib/file_parser/ole.rb
128
+ - lib/file_parser/parser.rb
129
+ - lib/file_parser/wmf.rb
126
130
  - lib/mathtype.rb
127
131
  - lib/mathtype/version.rb
128
- - lib/records/char.rb
129
- - lib/records/color.rb
130
- - lib/records/color_def.rb
131
- - lib/records/embell.rb
132
- - lib/records/encoding_def.rb
132
+ - lib/records/bintypes.rb
133
133
  - lib/records/end.rb
134
- - lib/records/eqn_prefs.rb
135
- - lib/records/font_def.rb
136
- - lib/records/font_style_def.rb
137
- - lib/records/future.rb
138
- - lib/records/line.rb
139
- - lib/records/matrix.rb
140
134
  - lib/records/mtef.rb
141
135
  - lib/records/nudge.rb
142
- - lib/records/pile.rb
143
136
  - lib/records/ruler.rb
144
- - lib/records/size.rb
145
137
  - lib/records/snapshot.rb
146
- - lib/records/tmpl.rb
147
138
  - lib/records/typesizes.rb
139
+ - lib/records3/char.rb
140
+ - lib/records3/embell.rb
141
+ - lib/records3/font.rb
142
+ - lib/records3/line.rb
143
+ - lib/records3/matrix.rb
144
+ - lib/records3/mtef.rb
145
+ - lib/records3/options.rb
146
+ - lib/records3/pile.rb
147
+ - lib/records3/size.rb
148
+ - lib/records3/snapshot.rb
149
+ - lib/records3/tmpl.rb
150
+ - lib/records5/char.rb
151
+ - lib/records5/color.rb
152
+ - lib/records5/color_def.rb
153
+ - lib/records5/embell.rb
154
+ - lib/records5/encoding_def.rb
155
+ - lib/records5/eqn_prefs.rb
156
+ - lib/records5/font_def.rb
157
+ - lib/records5/font_style_def.rb
158
+ - lib/records5/future.rb
159
+ - lib/records5/line.rb
160
+ - lib/records5/matrix.rb
161
+ - lib/records5/mtef.rb
162
+ - lib/records5/pile.rb
163
+ - lib/records5/size.rb
164
+ - lib/records5/snapshot.rb
165
+ - lib/records5/tmpl.rb
148
166
  - mathtype.gemspec
149
- - spec/fixtures/expected/299.xml
150
- - spec/fixtures/expected/arrows.xml
151
- - spec/fixtures/expected/embedded.xml
152
- - spec/fixtures/expected/embellishments.xml
153
- - spec/fixtures/expected/equation1.xml
154
- - spec/fixtures/expected/equation10.xml
155
- - spec/fixtures/expected/equation11.xml
156
- - spec/fixtures/expected/equation12.xml
157
- - spec/fixtures/expected/equation13.xml
158
- - spec/fixtures/expected/equation2.xml
159
- - spec/fixtures/expected/equation3.xml
160
- - spec/fixtures/expected/equation4.xml
161
- - spec/fixtures/expected/equation5.xml
162
- - spec/fixtures/expected/equation6.xml
163
- - spec/fixtures/expected/equation7.xml
164
- - spec/fixtures/expected/equation8.xml
165
- - spec/fixtures/expected/equation9.xml
166
- - spec/fixtures/expected/fences.xml
167
- - spec/fixtures/expected/integrals.xml
168
- - spec/fixtures/expected/sizes.xml
169
- - spec/fixtures/input/299.bin
170
- - spec/fixtures/input/arrows.bin
171
- - spec/fixtures/input/embedded.bin
172
- - spec/fixtures/input/embellishments.bin
173
- - spec/fixtures/input/equation1.bin
174
- - spec/fixtures/input/equation10.bin
175
- - spec/fixtures/input/equation11.bin
176
- - spec/fixtures/input/equation12.bin
177
- - spec/fixtures/input/equation13.bin
178
- - spec/fixtures/input/equation2.bin
179
- - spec/fixtures/input/equation3.bin
180
- - spec/fixtures/input/equation4.bin
181
- - spec/fixtures/input/equation5.bin
182
- - spec/fixtures/input/equation6.bin
183
- - spec/fixtures/input/equation7.bin
184
- - spec/fixtures/input/equation8.bin
185
- - spec/fixtures/input/equation9.bin
186
- - spec/fixtures/input/fences.bin
187
- - spec/fixtures/input/integrals.bin
188
- - spec/fixtures/input/sizes.bin
167
+ - spec/fixtures/expected/mathtype3/ceil.xml
168
+ - spec/fixtures/expected/mathtype3/fence.xml
169
+ - spec/fixtures/expected/mathtype3/floor.xml
170
+ - spec/fixtures/expected/mathtype3/frac.xml
171
+ - spec/fixtures/expected/mathtype3/large_nudge.xml
172
+ - spec/fixtures/expected/mathtype3/lim_embell.xml
173
+ - spec/fixtures/expected/mathtype3/matrix_2x1.xml
174
+ - spec/fixtures/expected/mathtype3/pile.xml
175
+ - spec/fixtures/expected/mathtype3/sigma_subsup.xml
176
+ - spec/fixtures/expected/mathtype3/small_nudge.xml
177
+ - spec/fixtures/expected/mathtype3/sqrt.xml
178
+ - spec/fixtures/expected/mathtype5/299.xml
179
+ - spec/fixtures/expected/mathtype5/arrows.xml
180
+ - spec/fixtures/expected/mathtype5/embedded.xml
181
+ - spec/fixtures/expected/mathtype5/embellishments.xml
182
+ - spec/fixtures/expected/mathtype5/equation1.xml
183
+ - spec/fixtures/expected/mathtype5/equation10.xml
184
+ - spec/fixtures/expected/mathtype5/equation11.xml
185
+ - spec/fixtures/expected/mathtype5/equation12.xml
186
+ - spec/fixtures/expected/mathtype5/equation13.xml
187
+ - spec/fixtures/expected/mathtype5/equation2.xml
188
+ - spec/fixtures/expected/mathtype5/equation3.xml
189
+ - spec/fixtures/expected/mathtype5/equation4.xml
190
+ - spec/fixtures/expected/mathtype5/equation5.xml
191
+ - spec/fixtures/expected/mathtype5/equation6.xml
192
+ - spec/fixtures/expected/mathtype5/equation7.xml
193
+ - spec/fixtures/expected/mathtype5/equation8.xml
194
+ - spec/fixtures/expected/mathtype5/equation9.xml
195
+ - spec/fixtures/expected/mathtype5/fences.xml
196
+ - spec/fixtures/expected/mathtype5/integrals.xml
197
+ - spec/fixtures/expected/mathtype5/matrix-border.xml
198
+ - spec/fixtures/expected/mathtype5/matrix.xml
199
+ - spec/fixtures/expected/mathtype5/sizes.xml
200
+ - spec/fixtures/input/mathtype3/ceil.bin
201
+ - spec/fixtures/input/mathtype3/fence.bin
202
+ - spec/fixtures/input/mathtype3/floor.bin
203
+ - spec/fixtures/input/mathtype3/frac.bin
204
+ - spec/fixtures/input/mathtype3/large_nudge.bin
205
+ - spec/fixtures/input/mathtype3/lim_embell.bin
206
+ - spec/fixtures/input/mathtype3/matrix_2x1.bin
207
+ - spec/fixtures/input/mathtype3/pile.bin
208
+ - spec/fixtures/input/mathtype3/sigma_subsup.bin
209
+ - spec/fixtures/input/mathtype3/small_nudge.bin
210
+ - spec/fixtures/input/mathtype3/sqrt.bin
211
+ - spec/fixtures/input/mathtype5/299.bin
212
+ - spec/fixtures/input/mathtype5/arrows.bin
213
+ - spec/fixtures/input/mathtype5/embedded.bin
214
+ - spec/fixtures/input/mathtype5/embellishments.bin
215
+ - spec/fixtures/input/mathtype5/equation1.bin
216
+ - spec/fixtures/input/mathtype5/equation10.bin
217
+ - spec/fixtures/input/mathtype5/equation11.bin
218
+ - spec/fixtures/input/mathtype5/equation12.bin
219
+ - spec/fixtures/input/mathtype5/equation13.bin
220
+ - spec/fixtures/input/mathtype5/equation2.bin
221
+ - spec/fixtures/input/mathtype5/equation3.bin
222
+ - spec/fixtures/input/mathtype5/equation4.bin
223
+ - spec/fixtures/input/mathtype5/equation5.bin
224
+ - spec/fixtures/input/mathtype5/equation6.bin
225
+ - spec/fixtures/input/mathtype5/equation7.bin
226
+ - spec/fixtures/input/mathtype5/equation8.bin
227
+ - spec/fixtures/input/mathtype5/equation9.bin
228
+ - spec/fixtures/input/mathtype5/fences.bin
229
+ - spec/fixtures/input/mathtype5/integrals.bin
230
+ - spec/fixtures/input/mathtype5/matrix-border.bin
231
+ - spec/fixtures/input/mathtype5/matrix.bin
232
+ - spec/fixtures/input/mathtype5/sizes.bin
189
233
  - spec/mathtype_spec.rb
190
234
  - spec/spec_helper.rb
235
+ - test-mathtype.rb
191
236
  homepage: ''
192
237
  licenses:
193
238
  - MIT
@@ -208,50 +253,76 @@ required_rubygems_version: !ruby/object:Gem::Requirement
208
253
  version: '0'
209
254
  requirements: []
210
255
  rubyforge_project:
211
- rubygems_version: 2.2.2
256
+ rubygems_version: 2.6.12
212
257
  signing_key:
213
258
  specification_version: 4
214
259
  summary: A Ruby gem for reading MathType binaries and converting them to an XML form.
215
260
  test_files:
216
- - spec/fixtures/expected/299.xml
217
- - spec/fixtures/expected/arrows.xml
218
- - spec/fixtures/expected/embedded.xml
219
- - spec/fixtures/expected/embellishments.xml
220
- - spec/fixtures/expected/equation1.xml
221
- - spec/fixtures/expected/equation10.xml
222
- - spec/fixtures/expected/equation11.xml
223
- - spec/fixtures/expected/equation12.xml
224
- - spec/fixtures/expected/equation13.xml
225
- - spec/fixtures/expected/equation2.xml
226
- - spec/fixtures/expected/equation3.xml
227
- - spec/fixtures/expected/equation4.xml
228
- - spec/fixtures/expected/equation5.xml
229
- - spec/fixtures/expected/equation6.xml
230
- - spec/fixtures/expected/equation7.xml
231
- - spec/fixtures/expected/equation8.xml
232
- - spec/fixtures/expected/equation9.xml
233
- - spec/fixtures/expected/fences.xml
234
- - spec/fixtures/expected/integrals.xml
235
- - spec/fixtures/expected/sizes.xml
236
- - spec/fixtures/input/299.bin
237
- - spec/fixtures/input/arrows.bin
238
- - spec/fixtures/input/embedded.bin
239
- - spec/fixtures/input/embellishments.bin
240
- - spec/fixtures/input/equation1.bin
241
- - spec/fixtures/input/equation10.bin
242
- - spec/fixtures/input/equation11.bin
243
- - spec/fixtures/input/equation12.bin
244
- - spec/fixtures/input/equation13.bin
245
- - spec/fixtures/input/equation2.bin
246
- - spec/fixtures/input/equation3.bin
247
- - spec/fixtures/input/equation4.bin
248
- - spec/fixtures/input/equation5.bin
249
- - spec/fixtures/input/equation6.bin
250
- - spec/fixtures/input/equation7.bin
251
- - spec/fixtures/input/equation8.bin
252
- - spec/fixtures/input/equation9.bin
253
- - spec/fixtures/input/fences.bin
254
- - spec/fixtures/input/integrals.bin
255
- - spec/fixtures/input/sizes.bin
261
+ - spec/fixtures/expected/mathtype3/ceil.xml
262
+ - spec/fixtures/expected/mathtype3/fence.xml
263
+ - spec/fixtures/expected/mathtype3/floor.xml
264
+ - spec/fixtures/expected/mathtype3/frac.xml
265
+ - spec/fixtures/expected/mathtype3/large_nudge.xml
266
+ - spec/fixtures/expected/mathtype3/lim_embell.xml
267
+ - spec/fixtures/expected/mathtype3/matrix_2x1.xml
268
+ - spec/fixtures/expected/mathtype3/pile.xml
269
+ - spec/fixtures/expected/mathtype3/sigma_subsup.xml
270
+ - spec/fixtures/expected/mathtype3/small_nudge.xml
271
+ - spec/fixtures/expected/mathtype3/sqrt.xml
272
+ - spec/fixtures/expected/mathtype5/299.xml
273
+ - spec/fixtures/expected/mathtype5/arrows.xml
274
+ - spec/fixtures/expected/mathtype5/embedded.xml
275
+ - spec/fixtures/expected/mathtype5/embellishments.xml
276
+ - spec/fixtures/expected/mathtype5/equation1.xml
277
+ - spec/fixtures/expected/mathtype5/equation10.xml
278
+ - spec/fixtures/expected/mathtype5/equation11.xml
279
+ - spec/fixtures/expected/mathtype5/equation12.xml
280
+ - spec/fixtures/expected/mathtype5/equation13.xml
281
+ - spec/fixtures/expected/mathtype5/equation2.xml
282
+ - spec/fixtures/expected/mathtype5/equation3.xml
283
+ - spec/fixtures/expected/mathtype5/equation4.xml
284
+ - spec/fixtures/expected/mathtype5/equation5.xml
285
+ - spec/fixtures/expected/mathtype5/equation6.xml
286
+ - spec/fixtures/expected/mathtype5/equation7.xml
287
+ - spec/fixtures/expected/mathtype5/equation8.xml
288
+ - spec/fixtures/expected/mathtype5/equation9.xml
289
+ - spec/fixtures/expected/mathtype5/fences.xml
290
+ - spec/fixtures/expected/mathtype5/integrals.xml
291
+ - spec/fixtures/expected/mathtype5/matrix-border.xml
292
+ - spec/fixtures/expected/mathtype5/matrix.xml
293
+ - spec/fixtures/expected/mathtype5/sizes.xml
294
+ - spec/fixtures/input/mathtype3/ceil.bin
295
+ - spec/fixtures/input/mathtype3/fence.bin
296
+ - spec/fixtures/input/mathtype3/floor.bin
297
+ - spec/fixtures/input/mathtype3/frac.bin
298
+ - spec/fixtures/input/mathtype3/large_nudge.bin
299
+ - spec/fixtures/input/mathtype3/lim_embell.bin
300
+ - spec/fixtures/input/mathtype3/matrix_2x1.bin
301
+ - spec/fixtures/input/mathtype3/pile.bin
302
+ - spec/fixtures/input/mathtype3/sigma_subsup.bin
303
+ - spec/fixtures/input/mathtype3/small_nudge.bin
304
+ - spec/fixtures/input/mathtype3/sqrt.bin
305
+ - spec/fixtures/input/mathtype5/299.bin
306
+ - spec/fixtures/input/mathtype5/arrows.bin
307
+ - spec/fixtures/input/mathtype5/embedded.bin
308
+ - spec/fixtures/input/mathtype5/embellishments.bin
309
+ - spec/fixtures/input/mathtype5/equation1.bin
310
+ - spec/fixtures/input/mathtype5/equation10.bin
311
+ - spec/fixtures/input/mathtype5/equation11.bin
312
+ - spec/fixtures/input/mathtype5/equation12.bin
313
+ - spec/fixtures/input/mathtype5/equation13.bin
314
+ - spec/fixtures/input/mathtype5/equation2.bin
315
+ - spec/fixtures/input/mathtype5/equation3.bin
316
+ - spec/fixtures/input/mathtype5/equation4.bin
317
+ - spec/fixtures/input/mathtype5/equation5.bin
318
+ - spec/fixtures/input/mathtype5/equation6.bin
319
+ - spec/fixtures/input/mathtype5/equation7.bin
320
+ - spec/fixtures/input/mathtype5/equation8.bin
321
+ - spec/fixtures/input/mathtype5/equation9.bin
322
+ - spec/fixtures/input/mathtype5/fences.bin
323
+ - spec/fixtures/input/mathtype5/integrals.bin
324
+ - spec/fixtures/input/mathtype5/matrix-border.bin
325
+ - spec/fixtures/input/mathtype5/matrix.bin
326
+ - spec/fixtures/input/mathtype5/sizes.bin
256
327
  - spec/mathtype_spec.rb
257
328
  - spec/spec_helper.rb