mathematical 1.2.1 → 1.2.2
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 +4 -4
- data/ext/mathematical/extconf.rb +3 -3
- data/ext/mathematical/lasem/itex2mml/itex2MML.l +1084 -0
- data/ext/mathematical/lasem/itex2mml/itex2MML.y +1945 -0
- data/ext/mathematical/mtex2MML/Makefile +91 -0
- data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
- data/ext/mathematical/mtex2MML/build/mtex2MML.h +1 -1
- data/ext/mathematical/mtex2MML/src/mtex2MML.l +1550 -0
- data/ext/mathematical/mtex2MML/src/mtex2MML.y +3726 -0
- data/lib/mathematical/version.rb +1 -1
- data/mathematical.gemspec +2 -1
- metadata +8 -2
data/lib/mathematical/version.rb
CHANGED
data/mathematical.gemspec
CHANGED
@@ -15,8 +15,9 @@ Gem::Specification.new do |spec|
|
|
15
15
|
|
16
16
|
spec.files = %w(LICENSE.txt README.md Rakefile mathematical.gemspec)
|
17
17
|
spec.files += Dir.glob('lib/**/*.rb')
|
18
|
-
spec.files += Dir.glob('ext/**/*.{c,h}')
|
18
|
+
spec.files += Dir.glob('ext/**/*.{a,c,h,l,y}')
|
19
19
|
spec.files += Dir.glob('ext/**/extconf.rb')
|
20
|
+
spec.files += Dir.glob('ext/**/Makefile')
|
20
21
|
spec.test_files = Dir.glob('test/**/*')
|
21
22
|
spec.require_paths = %w(lib ext)
|
22
23
|
spec.extensions = ['ext/mathematical/extconf.rb']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mathematical
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Garen Torikian
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-05-
|
11
|
+
date: 2015-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -112,6 +112,8 @@ files:
|
|
112
112
|
- ext/mathematical/cairo_callbacks.h
|
113
113
|
- ext/mathematical/extconf.rb
|
114
114
|
- ext/mathematical/lasem/itex2mml/itex2MML.h
|
115
|
+
- ext/mathematical/lasem/itex2mml/itex2MML.l
|
116
|
+
- ext/mathematical/lasem/itex2mml/itex2MML.y
|
115
117
|
- ext/mathematical/lasem/src/lasemrender.c
|
116
118
|
- ext/mathematical/lasem/src/lsm.c
|
117
119
|
- ext/mathematical/lasem/src/lsm.h
|
@@ -338,6 +340,8 @@ files:
|
|
338
340
|
- ext/mathematical/lasem_overrides.h
|
339
341
|
- ext/mathematical/mathematical.c
|
340
342
|
- ext/mathematical/mathematical.h
|
343
|
+
- ext/mathematical/mtex2MML/Makefile
|
344
|
+
- ext/mathematical/mtex2MML/build/libmtex2MML.a
|
341
345
|
- ext/mathematical/mtex2MML/build/mtex2MML.h
|
342
346
|
- ext/mathematical/mtex2MML/deps/uthash/utarray.h
|
343
347
|
- ext/mathematical/mtex2MML/deps/uthash/uthash.h
|
@@ -347,6 +351,8 @@ files:
|
|
347
351
|
- ext/mathematical/mtex2MML/src/lex.yy.c
|
348
352
|
- ext/mathematical/mtex2MML/src/main.c
|
349
353
|
- ext/mathematical/mtex2MML/src/mtex2MML.h
|
354
|
+
- ext/mathematical/mtex2MML/src/mtex2MML.l
|
355
|
+
- ext/mathematical/mtex2MML/src/mtex2MML.y
|
350
356
|
- ext/mathematical/mtex2MML/src/parse_extras.c
|
351
357
|
- ext/mathematical/mtex2MML/src/parse_extras.h
|
352
358
|
- ext/mathematical/mtex2MML/src/string_extras.c
|