mathml 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README +58 -0
- data/Rakefile +121 -0
- data/lib/math_ml.rb +1885 -0
- data/lib/math_ml/string.rb +32 -0
- data/lib/math_ml/util.rb +350 -0
- data/symbols/fetch_symbol.rb +446 -0
- data/symbols/fetch_symbol_test.rb +180 -0
- data/symbols/list.txt +518 -0
- data/test/math_ml_test.rb +780 -0
- data/test/math_ml_test_util.rb +48 -0
- data/test/math_ml_test_util_test.rb +22 -0
- data/test/string_test.rb +36 -0
- data/test/util_test.rb +694 -0
- metadata +80 -0
metadata
ADDED
@@ -0,0 +1,80 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
rubygems_version: 0.9.4
|
3
|
+
specification_version: 1
|
4
|
+
name: mathml
|
5
|
+
version: !ruby/object:Gem::Version
|
6
|
+
version: 0.8.0
|
7
|
+
date: 2007-10-23 00:00:00 +09:00
|
8
|
+
summary: MathML Library
|
9
|
+
require_paths:
|
10
|
+
- lib
|
11
|
+
email: hiraku@hinet.mydns.jp
|
12
|
+
homepage: http://mathml.rubyforge.org/
|
13
|
+
rubyforge_project: mathml
|
14
|
+
description:
|
15
|
+
autorequire:
|
16
|
+
default_executable:
|
17
|
+
bindir: bin
|
18
|
+
has_rdoc: true
|
19
|
+
required_ruby_version: !ruby/object:Gem::Version::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.0.0
|
24
|
+
version:
|
25
|
+
platform: ruby
|
26
|
+
signing_key:
|
27
|
+
cert_chain:
|
28
|
+
post_install_message:
|
29
|
+
authors:
|
30
|
+
- KURODA Hiraku
|
31
|
+
files:
|
32
|
+
- lib
|
33
|
+
- test
|
34
|
+
- Rakefile
|
35
|
+
- README
|
36
|
+
- symbols
|
37
|
+
- lib/math_ml
|
38
|
+
- lib/math_ml.rb
|
39
|
+
- lib/math_ml/string.rb
|
40
|
+
- lib/math_ml/util.rb
|
41
|
+
- test/math_ml_test_util.rb
|
42
|
+
- test/util_test.rb
|
43
|
+
- test/string_test.rb
|
44
|
+
- test/math_ml_test_util_test.rb
|
45
|
+
- test/math_ml_test.rb
|
46
|
+
- symbols/list.txt
|
47
|
+
- symbols/fetch_symbol_test.rb
|
48
|
+
- symbols/fetch_symbol.rb
|
49
|
+
test_files:
|
50
|
+
- test/math_ml_test_util.rb
|
51
|
+
- test/util_test.rb
|
52
|
+
- test/string_test.rb
|
53
|
+
- test/math_ml_test_util_test.rb
|
54
|
+
- test/math_ml_test.rb
|
55
|
+
rdoc_options:
|
56
|
+
- -S
|
57
|
+
- -w
|
58
|
+
- "3"
|
59
|
+
- -c
|
60
|
+
- UTF-8
|
61
|
+
- -m
|
62
|
+
- README
|
63
|
+
extra_rdoc_files:
|
64
|
+
- README
|
65
|
+
executables: []
|
66
|
+
|
67
|
+
extensions: []
|
68
|
+
|
69
|
+
requirements: []
|
70
|
+
|
71
|
+
dependencies:
|
72
|
+
- !ruby/object:Gem::Dependency
|
73
|
+
name: eimxml
|
74
|
+
version_requirement:
|
75
|
+
version_requirements: !ruby/object:Gem::Version::Requirement
|
76
|
+
requirements:
|
77
|
+
- - ">"
|
78
|
+
- !ruby/object:Gem::Version
|
79
|
+
version: 0.0.0
|
80
|
+
version:
|