itextomml 1.4.6 → 1.4.7
Sign up to get free protection for your applications and to get access to all the features.
- data/ext/itex2MML.h +3 -3
- data/ext/itex2MML_ruby.c +3 -3
- data/ext/lex.yy.c +2143 -2052
- data/ext/y.tab.c +1518 -1277
- data/ext/y.tab.h +5 -1
- metadata +5 -7
data/ext/y.tab.h
CHANGED
@@ -196,7 +196,9 @@
|
|
196
196
|
XARROW = 412,
|
197
197
|
OPTARGOPEN = 413,
|
198
198
|
OPTARGCLOSE = 414,
|
199
|
-
ITEXNUM = 415
|
199
|
+
ITEXNUM = 415,
|
200
|
+
RAISEBOX = 416,
|
201
|
+
NEG = 417
|
200
202
|
};
|
201
203
|
#endif
|
202
204
|
/* Tokens. */
|
@@ -358,6 +360,8 @@
|
|
358
360
|
#define OPTARGOPEN 413
|
359
361
|
#define OPTARGCLOSE 414
|
360
362
|
#define ITEXNUM 415
|
363
|
+
#define RAISEBOX 416
|
364
|
+
#define NEG 417
|
361
365
|
|
362
366
|
|
363
367
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: itextomml
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 9
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 1
|
8
8
|
- 4
|
9
|
-
-
|
10
|
-
version: 1.4.
|
9
|
+
- 7
|
10
|
+
version: 1.4.7
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jacques Distler
|
@@ -15,8 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-
|
19
|
-
default_executable:
|
18
|
+
date: 2011-09-07 00:00:00 Z
|
20
19
|
dependencies: []
|
21
20
|
|
22
21
|
description: itextomml provides native Ruby bindings to itex2MML, which converts itex equations to MathML.
|
@@ -38,7 +37,6 @@ files:
|
|
38
37
|
- test/test_itextomml.rb
|
39
38
|
- README
|
40
39
|
- ext/extconf.rb
|
41
|
-
has_rdoc: true
|
42
40
|
homepage: http://golem.ph.utexas.edu/~distler/blog/itex2MML.html
|
43
41
|
licenses: []
|
44
42
|
|
@@ -69,7 +67,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
67
|
requirements: []
|
70
68
|
|
71
69
|
rubyforge_project:
|
72
|
-
rubygems_version: 1.
|
70
|
+
rubygems_version: 1.8.10
|
73
71
|
signing_key:
|
74
72
|
specification_version: 3
|
75
73
|
summary: Native Ruby bindings to itex2MML.
|