itextomml 1.3.20
Sign up to get free protection for your applications and to get access to all the features.
- data/README +36 -0
- data/ext/extconf.rb +5 -0
- data/ext/itex2MML.h +63 -0
- data/ext/itex2MML_ruby.c +2314 -0
- data/ext/lex.yy.c +5912 -0
- data/ext/y.tab.c +5443 -0
- data/ext/y.tab.h +357 -0
- data/lib/itextomml.rb +171 -0
- metadata +69 -0
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: itextomml
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 1
|
7
|
+
- 3
|
8
|
+
- 20
|
9
|
+
version: 1.3.20
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Jacques Distler
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-04 00:00:00 -05:00
|
18
|
+
default_executable:
|
19
|
+
dependencies: []
|
20
|
+
|
21
|
+
description: itextomml provides native Ruby bindings to itex2MML, which converts itex equations to MathML.
|
22
|
+
email: jdistler-gemcutter@golem.ph.utexas.edu
|
23
|
+
executables: []
|
24
|
+
|
25
|
+
extensions:
|
26
|
+
- ext/extconf.rb
|
27
|
+
extra_rdoc_files: []
|
28
|
+
|
29
|
+
files:
|
30
|
+
- ext/itex2MML_ruby.c
|
31
|
+
- ext/lex.yy.c
|
32
|
+
- ext/y.tab.c
|
33
|
+
- ext/itex2MML.h
|
34
|
+
- ext/y.tab.h
|
35
|
+
- lib/itextomml.rb
|
36
|
+
- README
|
37
|
+
has_rdoc: true
|
38
|
+
homepage: http://golem.ph.utexas.edu/~distler/blog/itex2MML.html
|
39
|
+
licenses: []
|
40
|
+
|
41
|
+
post_install_message:
|
42
|
+
rdoc_options: []
|
43
|
+
|
44
|
+
require_paths:
|
45
|
+
- lib
|
46
|
+
- ext
|
47
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
48
|
+
requirements:
|
49
|
+
- - ">="
|
50
|
+
- !ruby/object:Gem::Version
|
51
|
+
segments:
|
52
|
+
- 0
|
53
|
+
version: "0"
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - ">="
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
segments:
|
59
|
+
- 0
|
60
|
+
version: "0"
|
61
|
+
requirements: []
|
62
|
+
|
63
|
+
rubyforge_project:
|
64
|
+
rubygems_version: 1.3.6
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Native Ruby bindings to itex2MML.
|
68
|
+
test_files: []
|
69
|
+
|