mathematical 0.3.0 → 0.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 64f77221486f047ae17b6854e592c37646728e5c
4
- data.tar.gz: fbd33b15d71ee8b8da0deadd2ca6d18df91b842e
3
+ metadata.gz: d9d51871f076bd11925a8bc4bc7cf250c2de8b75
4
+ data.tar.gz: 2dfde62658cfb84f86004710c60e743e2c042e38
5
5
  SHA512:
6
- metadata.gz: f1fab5176b65ad16c21871e62fab9c2c34625f3351b85a1e482f0bf02178779e74472fe59651b5c6918f263dec8c76eac6f5797d40bdb7af4fb3f3fcd7ab61a0
7
- data.tar.gz: 11becede8f22950fc3d3c0c38a89ef9e1f8d47a67c422346753fb5be884aadf0af2794a8e2cd227bbb74e33d0e04e9e76f373138a777b46a7a8de308d5b74f58
6
+ metadata.gz: e7921f6cbfbd8773985403dcd7b9987a2d4aa9ba748c8118a0637b2a196bbfe708db13471dc4227c59090d53be0502894eefa936c21e9a69532e0644ff497919
7
+ data.tar.gz: 7c06f2688a1cf43ec5dacd443d3f2f35d3e89457b19f8bc04402d101d2ae1f93cc83df6e3ad9fec0a4f80b0f30e2ea3914afde2270be2cf7178f03c661adcb34
data/README.md CHANGED
@@ -33,7 +33,7 @@ Mathematical::Render.new.render(string_with_math)
33
33
  The output will be a hash, with the following data:
34
34
 
35
35
  * `width`: the width of the resulting SVG file
36
- * `height: the height of the resulting SVG file
36
+ * `height`: the height of the resulting SVG file
37
37
  * `svg`: the actual string of SVG
38
38
 
39
39
  ### Options
@@ -76,9 +76,22 @@ To install these dependencies on a Mac, everything can be installed via Homebrew
76
76
  brew install glib gdk-pixbuf cairo pango
77
77
  ```
78
78
 
79
- `xml2` should already be on your machine.
79
+ Install the fonts with:
80
80
 
81
- The fonts should also be available on your system.
81
+ ```
82
+ cd ~/Library/Fonts
83
+ curl -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/cmex10.ttf \
84
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/cmmi10.ttf \
85
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/cmr10.ttf \
86
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/cmsy10.ttf \
87
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/esint10.ttf \
88
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/eufm10.ttf \
89
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/msam10.ttf \
90
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/msbm10.ttf \
91
+ -LO http://mirrors.ctan.org/fonts/cm/ps-type1/bakoma/ttf/cmmi10.ttf
92
+ ```
93
+
94
+ `xml2` should already be on your machine.
82
95
 
83
96
  ### *nix install
84
97
 
@@ -108,7 +121,7 @@ Rendering... 9.470000 0.750000 10.220000 ( 13.9
108
121
 
109
122
  After cloning the repo:
110
123
 
111
- ``` bash
124
+ ```
112
125
  script/bootstrap
113
126
  bundle exec rake compile
114
127
  ```
@@ -1,6 +1,10 @@
1
1
  require 'mkmf'
2
+ require 'rbconfig'
3
+ host_os = RbConfig::CONFIG['host_os']
2
4
 
3
- system("export PKG_CONFIG_PATH=/opt/X11/lib/pkgconfig:$PKG_CONFIG_PATH")
5
+ if host_os =~ /darwin|mac os/
6
+ ENV['PKG_CONFIG_PATH'] = "/opt/X11/lib/pkgconfig:#{ENV['PKG_CONFIG_PATH']}"
7
+ end
4
8
 
5
9
  have_library("xml2")
6
10
  find_header("libxml/tree.h", "/usr/include/libxml2", "/usr/local/include/libxml2")
@@ -1,3 +1,3 @@
1
1
  module Mathematical
2
- VERSION = "0.3.0"
2
+ VERSION = "0.3.1"
3
3
  end
metadata CHANGED
@@ -1,69 +1,69 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mathematical
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-05-14 00:00:00.000000000 Z
11
+ date: 2014-05-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ~>
18
18
  - !ruby/object:Gem::Version
19
19
  version: '0.9'
20
20
  type: :development
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
- - - "~>"
24
+ - - ~>
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.9'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
- - - "~>"
31
+ - - ~>
32
32
  - !ruby/object:Gem::Version
33
33
  version: '1.5'
34
34
  type: :development
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
- - - "~>"
38
+ - - ~>
39
39
  - !ruby/object:Gem::Version
40
40
  version: '1.5'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: mocha
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
- - - "~>"
45
+ - - ~>
46
46
  - !ruby/object:Gem::Version
47
47
  version: '1.0'
48
48
  type: :development
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
- - - "~>"
52
+ - - ~>
53
53
  - !ruby/object:Gem::Version
54
54
  version: '1.0'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: math-to-itex
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements:
59
- - - "~>"
59
+ - - ~>
60
60
  - !ruby/object:Gem::Version
61
61
  version: '0.1'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
- - - "~>"
66
+ - - ~>
67
67
  - !ruby/object:Gem::Version
68
68
  version: '0.1'
69
69
  description: 'A very fast way to turn itex math equations into beautifully rendered
@@ -79,237 +79,237 @@ files:
79
79
  - LICENSE.txt
80
80
  - README.md
81
81
  - Rakefile
82
- - ext/mathematical/extconf.rb
83
- - ext/mathematical/itex2MML.h
82
+ - mathematical.gemspec
83
+ - lib/mathematical/render.rb
84
+ - lib/mathematical/version.rb
85
+ - lib/mathematical.rb
84
86
  - ext/mathematical/lasemrender.c
85
87
  - ext/mathematical/lex.yy.c
86
88
  - ext/mathematical/lsm.c
87
- - ext/mathematical/lsm.h
88
89
  - ext/mathematical/lsmattributes.c
89
- - ext/mathematical/lsmattributes.h
90
90
  - ext/mathematical/lsmcairo.c
91
- - ext/mathematical/lsmcairo.h
92
91
  - ext/mathematical/lsmdebug.c
92
+ - ext/mathematical/lsmdomcharacterdata.c
93
+ - ext/mathematical/lsmdomdocument.c
94
+ - ext/mathematical/lsmdomdocumentfragment.c
95
+ - ext/mathematical/lsmdomelement.c
96
+ - ext/mathematical/lsmdomentities.c
97
+ - ext/mathematical/lsmdomenumtypes.c
98
+ - ext/mathematical/lsmdomimplementation.c
99
+ - ext/mathematical/lsmdomnamednodemap.c
100
+ - ext/mathematical/lsmdomnode.c
101
+ - ext/mathematical/lsmdomnodelist.c
102
+ - ext/mathematical/lsmdomparser.c
103
+ - ext/mathematical/lsmdomtext.c
104
+ - ext/mathematical/lsmdomview.c
105
+ - ext/mathematical/lsmitex.c
106
+ - ext/mathematical/lsmmathmlactionelement.c
107
+ - ext/mathematical/lsmmathmlaligngroupelement.c
108
+ - ext/mathematical/lsmmathmlalignmarkelement.c
109
+ - ext/mathematical/lsmmathmlattributes.c
110
+ - ext/mathematical/lsmmathmldocument.c
111
+ - ext/mathematical/lsmmathmlelement.c
112
+ - ext/mathematical/lsmmathmlenums.c
113
+ - ext/mathematical/lsmmathmlenumtypes.c
114
+ - ext/mathematical/lsmmathmlerrorelement.c
115
+ - ext/mathematical/lsmmathmlfencedelement.c
116
+ - ext/mathematical/lsmmathmlfractionelement.c
117
+ - ext/mathematical/lsmmathmlglyphtableams.c
118
+ - ext/mathematical/lsmmathmlitexelement.c
119
+ - ext/mathematical/lsmmathmllayoututils.c
120
+ - ext/mathematical/lsmmathmlmathelement.c
121
+ - ext/mathematical/lsmmathmloperatordictionary.c
122
+ - ext/mathematical/lsmmathmloperatorelement.c
123
+ - ext/mathematical/lsmmathmlpaddedelement.c
124
+ - ext/mathematical/lsmmathmlphantomelement.c
125
+ - ext/mathematical/lsmmathmlpresentationcontainer.c
126
+ - ext/mathematical/lsmmathmlpresentationtoken.c
127
+ - ext/mathematical/lsmmathmlradicalelement.c
128
+ - ext/mathematical/lsmmathmlrowelement.c
129
+ - ext/mathematical/lsmmathmlscriptelement.c
130
+ - ext/mathematical/lsmmathmlsemanticselement.c
131
+ - ext/mathematical/lsmmathmlspaceelement.c
132
+ - ext/mathematical/lsmmathmlstringelement.c
133
+ - ext/mathematical/lsmmathmlstyle.c
134
+ - ext/mathematical/lsmmathmlstyleelement.c
135
+ - ext/mathematical/lsmmathmltablecellelement.c
136
+ - ext/mathematical/lsmmathmltableelement.c
137
+ - ext/mathematical/lsmmathmltablerowelement.c
138
+ - ext/mathematical/lsmmathmltraits.c
139
+ - ext/mathematical/lsmmathmlunderoverelement.c
140
+ - ext/mathematical/lsmmathmlutils.c
141
+ - ext/mathematical/lsmmathmlview.c
142
+ - ext/mathematical/lsmproperties.c
143
+ - ext/mathematical/lsmstr.c
144
+ - ext/mathematical/lsmsvgaelement.c
145
+ - ext/mathematical/lsmsvgcircleelement.c
146
+ - ext/mathematical/lsmsvgclippathelement.c
147
+ - ext/mathematical/lsmsvgcolors.c
148
+ - ext/mathematical/lsmsvgdefselement.c
149
+ - ext/mathematical/lsmsvgdocument.c
150
+ - ext/mathematical/lsmsvgelement.c
151
+ - ext/mathematical/lsmsvgellipseelement.c
152
+ - ext/mathematical/lsmsvgenums.c
153
+ - ext/mathematical/lsmsvgenumtypes.c
154
+ - ext/mathematical/lsmsvgfilterblend.c
155
+ - ext/mathematical/lsmsvgfiltercomposite.c
156
+ - ext/mathematical/lsmsvgfilterelement.c
157
+ - ext/mathematical/lsmsvgfilterflood.c
158
+ - ext/mathematical/lsmsvgfiltergaussianblur.c
159
+ - ext/mathematical/lsmsvgfiltermerge.c
160
+ - ext/mathematical/lsmsvgfiltermergenode.c
161
+ - ext/mathematical/lsmsvgfilteroffset.c
162
+ - ext/mathematical/lsmsvgfilterprimitive.c
163
+ - ext/mathematical/lsmsvgfilterspecularlighting.c
164
+ - ext/mathematical/lsmsvgfiltersurface.c
165
+ - ext/mathematical/lsmsvgfiltertile.c
166
+ - ext/mathematical/lsmsvggelement.c
167
+ - ext/mathematical/lsmsvggradientelement.c
168
+ - ext/mathematical/lsmsvgimageelement.c
169
+ - ext/mathematical/lsmsvglength.c
170
+ - ext/mathematical/lsmsvglineargradientelement.c
171
+ - ext/mathematical/lsmsvglineelement.c
172
+ - ext/mathematical/lsmsvgmarkerelement.c
173
+ - ext/mathematical/lsmsvgmaskelement.c
174
+ - ext/mathematical/lsmsvgmatrix.c
175
+ - ext/mathematical/lsmsvgpathelement.c
176
+ - ext/mathematical/lsmsvgpatternelement.c
177
+ - ext/mathematical/lsmsvgpolygonelement.c
178
+ - ext/mathematical/lsmsvgpolylineelement.c
179
+ - ext/mathematical/lsmsvgradialgradientelement.c
180
+ - ext/mathematical/lsmsvgrectelement.c
181
+ - ext/mathematical/lsmsvgstopelement.c
182
+ - ext/mathematical/lsmsvgstyle.c
183
+ - ext/mathematical/lsmsvgsvgelement.c
184
+ - ext/mathematical/lsmsvgswitchelement.c
185
+ - ext/mathematical/lsmsvgsymbolelement.c
186
+ - ext/mathematical/lsmsvgtextelement.c
187
+ - ext/mathematical/lsmsvgtraits.c
188
+ - ext/mathematical/lsmsvgtransformable.c
189
+ - ext/mathematical/lsmsvgtspanelement.c
190
+ - ext/mathematical/lsmsvguseelement.c
191
+ - ext/mathematical/lsmsvgview.c
192
+ - ext/mathematical/lsmtraits.c
193
+ - ext/mathematical/lsmutils.c
194
+ - ext/mathematical/mathematical.c
195
+ - ext/mathematical/y.tab.c
196
+ - ext/mathematical/itex2MML.h
197
+ - ext/mathematical/lsm.h
198
+ - ext/mathematical/lsmattributes.h
199
+ - ext/mathematical/lsmcairo.h
93
200
  - ext/mathematical/lsmdebug.h
94
201
  - ext/mathematical/lsmdom.h
95
- - ext/mathematical/lsmdomcharacterdata.c
96
202
  - ext/mathematical/lsmdomcharacterdata.h
97
- - ext/mathematical/lsmdomdocument.c
98
203
  - ext/mathematical/lsmdomdocument.h
99
- - ext/mathematical/lsmdomdocumentfragment.c
100
204
  - ext/mathematical/lsmdomdocumentfragment.h
101
- - ext/mathematical/lsmdomelement.c
102
205
  - ext/mathematical/lsmdomelement.h
103
- - ext/mathematical/lsmdomentities.c
104
206
  - ext/mathematical/lsmdomentities.h
105
- - ext/mathematical/lsmdomenumtypes.c
106
207
  - ext/mathematical/lsmdomenumtypes.h
107
- - ext/mathematical/lsmdomimplementation.c
108
208
  - ext/mathematical/lsmdomimplementation.h
109
- - ext/mathematical/lsmdomnamednodemap.c
110
209
  - ext/mathematical/lsmdomnamednodemap.h
111
- - ext/mathematical/lsmdomnode.c
112
210
  - ext/mathematical/lsmdomnode.h
113
- - ext/mathematical/lsmdomnodelist.c
114
211
  - ext/mathematical/lsmdomnodelist.h
115
- - ext/mathematical/lsmdomparser.c
116
212
  - ext/mathematical/lsmdomparser.h
117
- - ext/mathematical/lsmdomtext.c
118
213
  - ext/mathematical/lsmdomtext.h
119
214
  - ext/mathematical/lsmdomtypes.h
120
- - ext/mathematical/lsmdomview.c
121
215
  - ext/mathematical/lsmdomview.h
122
- - ext/mathematical/lsmitex.c
123
216
  - ext/mathematical/lsmitex.h
124
217
  - ext/mathematical/lsmmathml.h
125
- - ext/mathematical/lsmmathmlactionelement.c
126
218
  - ext/mathematical/lsmmathmlactionelement.h
127
- - ext/mathematical/lsmmathmlaligngroupelement.c
128
219
  - ext/mathematical/lsmmathmlaligngroupelement.h
129
- - ext/mathematical/lsmmathmlalignmarkelement.c
130
220
  - ext/mathematical/lsmmathmlalignmarkelement.h
131
- - ext/mathematical/lsmmathmlattributes.c
132
221
  - ext/mathematical/lsmmathmlattributes.h
133
- - ext/mathematical/lsmmathmldocument.c
134
222
  - ext/mathematical/lsmmathmldocument.h
135
- - ext/mathematical/lsmmathmlelement.c
136
223
  - ext/mathematical/lsmmathmlelement.h
137
- - ext/mathematical/lsmmathmlenums.c
138
224
  - ext/mathematical/lsmmathmlenums.h
139
- - ext/mathematical/lsmmathmlenumtypes.c
140
225
  - ext/mathematical/lsmmathmlenumtypes.h
141
- - ext/mathematical/lsmmathmlerrorelement.c
142
226
  - ext/mathematical/lsmmathmlerrorelement.h
143
- - ext/mathematical/lsmmathmlfencedelement.c
144
227
  - ext/mathematical/lsmmathmlfencedelement.h
145
- - ext/mathematical/lsmmathmlfractionelement.c
146
228
  - ext/mathematical/lsmmathmlfractionelement.h
147
- - ext/mathematical/lsmmathmlglyphtableams.c
148
229
  - ext/mathematical/lsmmathmlglyphtableams.h
149
- - ext/mathematical/lsmmathmlitexelement.c
150
230
  - ext/mathematical/lsmmathmlitexelement.h
151
- - ext/mathematical/lsmmathmllayoututils.c
152
231
  - ext/mathematical/lsmmathmllayoututils.h
153
- - ext/mathematical/lsmmathmlmathelement.c
154
232
  - ext/mathematical/lsmmathmlmathelement.h
155
- - ext/mathematical/lsmmathmloperatordictionary.c
156
233
  - ext/mathematical/lsmmathmloperatordictionary.h
157
- - ext/mathematical/lsmmathmloperatorelement.c
158
234
  - ext/mathematical/lsmmathmloperatorelement.h
159
- - ext/mathematical/lsmmathmlpaddedelement.c
160
235
  - ext/mathematical/lsmmathmlpaddedelement.h
161
- - ext/mathematical/lsmmathmlphantomelement.c
162
236
  - ext/mathematical/lsmmathmlphantomelement.h
163
- - ext/mathematical/lsmmathmlpresentationcontainer.c
164
237
  - ext/mathematical/lsmmathmlpresentationcontainer.h
165
- - ext/mathematical/lsmmathmlpresentationtoken.c
166
238
  - ext/mathematical/lsmmathmlpresentationtoken.h
167
- - ext/mathematical/lsmmathmlradicalelement.c
168
239
  - ext/mathematical/lsmmathmlradicalelement.h
169
- - ext/mathematical/lsmmathmlrowelement.c
170
240
  - ext/mathematical/lsmmathmlrowelement.h
171
- - ext/mathematical/lsmmathmlscriptelement.c
172
241
  - ext/mathematical/lsmmathmlscriptelement.h
173
- - ext/mathematical/lsmmathmlsemanticselement.c
174
242
  - ext/mathematical/lsmmathmlsemanticselement.h
175
- - ext/mathematical/lsmmathmlspaceelement.c
176
243
  - ext/mathematical/lsmmathmlspaceelement.h
177
- - ext/mathematical/lsmmathmlstringelement.c
178
244
  - ext/mathematical/lsmmathmlstringelement.h
179
- - ext/mathematical/lsmmathmlstyle.c
180
245
  - ext/mathematical/lsmmathmlstyle.h
181
- - ext/mathematical/lsmmathmlstyleelement.c
182
246
  - ext/mathematical/lsmmathmlstyleelement.h
183
- - ext/mathematical/lsmmathmltablecellelement.c
184
247
  - ext/mathematical/lsmmathmltablecellelement.h
185
- - ext/mathematical/lsmmathmltableelement.c
186
248
  - ext/mathematical/lsmmathmltableelement.h
187
- - ext/mathematical/lsmmathmltablerowelement.c
188
249
  - ext/mathematical/lsmmathmltablerowelement.h
189
- - ext/mathematical/lsmmathmltraits.c
190
250
  - ext/mathematical/lsmmathmltraits.h
191
251
  - ext/mathematical/lsmmathmltypes.h
192
- - ext/mathematical/lsmmathmlunderoverelement.c
193
252
  - ext/mathematical/lsmmathmlunderoverelement.h
194
- - ext/mathematical/lsmmathmlutils.c
195
253
  - ext/mathematical/lsmmathmlutils.h
196
- - ext/mathematical/lsmmathmlview.c
197
254
  - ext/mathematical/lsmmathmlview.h
198
- - ext/mathematical/lsmproperties.c
199
255
  - ext/mathematical/lsmproperties.h
200
- - ext/mathematical/lsmstr.c
201
256
  - ext/mathematical/lsmstr.h
202
257
  - ext/mathematical/lsmsvg.h
203
- - ext/mathematical/lsmsvgaelement.c
204
258
  - ext/mathematical/lsmsvgaelement.h
205
259
  - ext/mathematical/lsmsvgattributes.h
206
- - ext/mathematical/lsmsvgcircleelement.c
207
260
  - ext/mathematical/lsmsvgcircleelement.h
208
- - ext/mathematical/lsmsvgclippathelement.c
209
261
  - ext/mathematical/lsmsvgclippathelement.h
210
- - ext/mathematical/lsmsvgcolors.c
211
262
  - ext/mathematical/lsmsvgcolors.h
212
- - ext/mathematical/lsmsvgdefselement.c
213
263
  - ext/mathematical/lsmsvgdefselement.h
214
- - ext/mathematical/lsmsvgdocument.c
215
264
  - ext/mathematical/lsmsvgdocument.h
216
- - ext/mathematical/lsmsvgelement.c
217
265
  - ext/mathematical/lsmsvgelement.h
218
- - ext/mathematical/lsmsvgellipseelement.c
219
266
  - ext/mathematical/lsmsvgellipseelement.h
220
- - ext/mathematical/lsmsvgenums.c
221
267
  - ext/mathematical/lsmsvgenums.h
222
- - ext/mathematical/lsmsvgenumtypes.c
223
268
  - ext/mathematical/lsmsvgenumtypes.h
224
- - ext/mathematical/lsmsvgfilterblend.c
225
269
  - ext/mathematical/lsmsvgfilterblend.h
226
- - ext/mathematical/lsmsvgfiltercomposite.c
227
270
  - ext/mathematical/lsmsvgfiltercomposite.h
228
- - ext/mathematical/lsmsvgfilterelement.c
229
271
  - ext/mathematical/lsmsvgfilterelement.h
230
- - ext/mathematical/lsmsvgfilterflood.c
231
272
  - ext/mathematical/lsmsvgfilterflood.h
232
- - ext/mathematical/lsmsvgfiltergaussianblur.c
233
273
  - ext/mathematical/lsmsvgfiltergaussianblur.h
234
- - ext/mathematical/lsmsvgfiltermerge.c
235
274
  - ext/mathematical/lsmsvgfiltermerge.h
236
- - ext/mathematical/lsmsvgfiltermergenode.c
237
275
  - ext/mathematical/lsmsvgfiltermergenode.h
238
- - ext/mathematical/lsmsvgfilteroffset.c
239
276
  - ext/mathematical/lsmsvgfilteroffset.h
240
- - ext/mathematical/lsmsvgfilterprimitive.c
241
277
  - ext/mathematical/lsmsvgfilterprimitive.h
242
- - ext/mathematical/lsmsvgfilterspecularlighting.c
243
278
  - ext/mathematical/lsmsvgfilterspecularlighting.h
244
- - ext/mathematical/lsmsvgfiltersurface.c
245
279
  - ext/mathematical/lsmsvgfiltersurface.h
246
- - ext/mathematical/lsmsvgfiltertile.c
247
280
  - ext/mathematical/lsmsvgfiltertile.h
248
- - ext/mathematical/lsmsvggelement.c
249
281
  - ext/mathematical/lsmsvggelement.h
250
- - ext/mathematical/lsmsvggradientelement.c
251
282
  - ext/mathematical/lsmsvggradientelement.h
252
- - ext/mathematical/lsmsvgimageelement.c
253
283
  - ext/mathematical/lsmsvgimageelement.h
254
- - ext/mathematical/lsmsvglength.c
255
284
  - ext/mathematical/lsmsvglength.h
256
- - ext/mathematical/lsmsvglineargradientelement.c
257
285
  - ext/mathematical/lsmsvglineargradientelement.h
258
- - ext/mathematical/lsmsvglineelement.c
259
286
  - ext/mathematical/lsmsvglineelement.h
260
- - ext/mathematical/lsmsvgmarkerelement.c
261
287
  - ext/mathematical/lsmsvgmarkerelement.h
262
- - ext/mathematical/lsmsvgmaskelement.c
263
288
  - ext/mathematical/lsmsvgmaskelement.h
264
- - ext/mathematical/lsmsvgmatrix.c
265
289
  - ext/mathematical/lsmsvgmatrix.h
266
- - ext/mathematical/lsmsvgpathelement.c
267
290
  - ext/mathematical/lsmsvgpathelement.h
268
- - ext/mathematical/lsmsvgpatternelement.c
269
291
  - ext/mathematical/lsmsvgpatternelement.h
270
- - ext/mathematical/lsmsvgpolygonelement.c
271
292
  - ext/mathematical/lsmsvgpolygonelement.h
272
- - ext/mathematical/lsmsvgpolylineelement.c
273
293
  - ext/mathematical/lsmsvgpolylineelement.h
274
- - ext/mathematical/lsmsvgradialgradientelement.c
275
294
  - ext/mathematical/lsmsvgradialgradientelement.h
276
- - ext/mathematical/lsmsvgrectelement.c
277
295
  - ext/mathematical/lsmsvgrectelement.h
278
- - ext/mathematical/lsmsvgstopelement.c
279
296
  - ext/mathematical/lsmsvgstopelement.h
280
- - ext/mathematical/lsmsvgstyle.c
281
297
  - ext/mathematical/lsmsvgstyle.h
282
- - ext/mathematical/lsmsvgsvgelement.c
283
298
  - ext/mathematical/lsmsvgsvgelement.h
284
- - ext/mathematical/lsmsvgswitchelement.c
285
299
  - ext/mathematical/lsmsvgswitchelement.h
286
- - ext/mathematical/lsmsvgsymbolelement.c
287
300
  - ext/mathematical/lsmsvgsymbolelement.h
288
- - ext/mathematical/lsmsvgtextelement.c
289
301
  - ext/mathematical/lsmsvgtextelement.h
290
- - ext/mathematical/lsmsvgtraits.c
291
302
  - ext/mathematical/lsmsvgtraits.h
292
- - ext/mathematical/lsmsvgtransformable.c
293
303
  - ext/mathematical/lsmsvgtransformable.h
294
- - ext/mathematical/lsmsvgtspanelement.c
295
304
  - ext/mathematical/lsmsvgtspanelement.h
296
305
  - ext/mathematical/lsmsvgtypes.h
297
- - ext/mathematical/lsmsvguseelement.c
298
306
  - ext/mathematical/lsmsvguseelement.h
299
- - ext/mathematical/lsmsvgview.c
300
307
  - ext/mathematical/lsmsvgview.h
301
- - ext/mathematical/lsmtraits.c
302
308
  - ext/mathematical/lsmtraits.h
303
309
  - ext/mathematical/lsmtypes.h
304
- - ext/mathematical/lsmutils.c
305
310
  - ext/mathematical/lsmutils.h
306
- - ext/mathematical/mathematical.c
307
- - ext/mathematical/y.tab.c
308
311
  - ext/mathematical/y.tab.h
309
- - lib/mathematical.rb
310
- - lib/mathematical/render.rb
311
- - lib/mathematical/version.rb
312
- - mathematical.gemspec
312
+ - ext/mathematical/extconf.rb
313
313
  - test/mathematical/basic_test.rb
314
314
  - test/mathematical/fixtures/after/brackets_display.html
315
315
  - test/mathematical/fixtures/after/compliance_accents.html
@@ -351,17 +351,17 @@ require_paths:
351
351
  - ext
352
352
  required_ruby_version: !ruby/object:Gem::Requirement
353
353
  requirements:
354
- - - ">="
354
+ - - '>='
355
355
  - !ruby/object:Gem::Version
356
356
  version: '0'
357
357
  required_rubygems_version: !ruby/object:Gem::Requirement
358
358
  requirements:
359
- - - ">="
359
+ - - '>='
360
360
  - !ruby/object:Gem::Version
361
361
  version: '0'
362
362
  requirements: []
363
363
  rubyforge_project:
364
- rubygems_version: 2.2.2
364
+ rubygems_version: 2.0.3
365
365
  signing_key:
366
366
  specification_version: 4
367
367
  summary: Quickly convert math equations into beautiful SVGs.