mathematical 1.6.14 → 1.6.18

Sign up to get free protection for your applications and to get access to all the features.
Files changed (318) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +7 -1
  3. data/Rakefile +31 -21
  4. data/ext/mathematical/extconf.rb +71 -69
  5. data/ext/mathematical/lasem/COPYING +118 -99
  6. data/ext/mathematical/lasem/{NEWS → NEWS.md} +10 -0
  7. data/ext/mathematical/lasem/README.md +65 -0
  8. data/ext/mathematical/lasem/docs/lasem-render-0.6.1 +2 -2
  9. data/ext/mathematical/lasem/docs/meson.build +3 -0
  10. data/ext/mathematical/lasem/docs/reference/lasem/building.md +32 -0
  11. data/ext/mathematical/lasem/docs/reference/lasem/lasem.toml.in +47 -0
  12. data/ext/mathematical/lasem/docs/reference/lasem/meson.build +44 -0
  13. data/ext/mathematical/lasem/docs/reference/lasem/overview.md +24 -0
  14. data/ext/mathematical/lasem/docs/reference/lasem/urlmap.js +5 -0
  15. data/ext/mathematical/lasem/itex2mml/README.itex2MML +5 -2
  16. data/ext/mathematical/lasem/itex2mml/itex2MML.h +10 -10
  17. data/ext/mathematical/lasem/itex2mml/itex2MML.l +126 -27
  18. data/ext/mathematical/lasem/itex2mml/itex2MML.y +262 -99
  19. data/ext/mathematical/lasem/itex2mml/meson.build +17 -0
  20. data/ext/mathematical/lasem/lasem.doap +7 -7
  21. data/ext/mathematical/lasem/meson.build +46 -0
  22. data/ext/mathematical/lasem/meson_options.txt +5 -0
  23. data/ext/mathematical/lasem/org.lasem.Viewer.json +41 -0
  24. data/ext/mathematical/lasem/po/LINGUAS +0 -2
  25. data/ext/mathematical/lasem/po/eu.po +30 -66
  26. data/ext/mathematical/lasem/po/meson.build +4 -0
  27. data/ext/mathematical/lasem/src/lasemrender.c +1 -6
  28. data/ext/mathematical/lasem/src/lsm.c +2 -0
  29. data/ext/mathematical/lasem/src/lsmattributes.c +2 -5
  30. data/ext/mathematical/lasem/src/lsmmathmlglyphtableams.c +71 -7
  31. data/ext/mathematical/lasem/src/lsmmathmlitexelement.c +7 -5
  32. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.c +11 -1
  33. data/ext/mathematical/lasem/src/lsmmathmloperatordictionary.h +2 -1
  34. data/ext/mathematical/lasem/src/lsmmathmloperatorelement.c +6 -1
  35. data/ext/mathematical/lasem/src/lsmmathmlview.c +21 -3
  36. data/ext/mathematical/lasem/src/lsmmathmlview.h +2 -2
  37. data/ext/mathematical/lasem/src/lsmmisc.c +15 -0
  38. data/ext/mathematical/lasem/src/lsmmisc.h +32 -0
  39. data/ext/mathematical/lasem/src/lsmproperties.c +2 -5
  40. data/ext/mathematical/lasem/src/lsmsvgfiltersurface.c +6 -3
  41. data/ext/mathematical/lasem/src/lsmsvgtraits.c +10 -1
  42. data/ext/mathematical/lasem/src/meson.build +321 -0
  43. data/ext/mathematical/lasem/subprojects/gi-docgen.wrap +6 -0
  44. data/ext/mathematical/lasem/tests/data/mathml/tex/misc/array.tex +3 -0
  45. data/ext/mathematical/lasem/tests/dom.c +0 -6
  46. data/ext/mathematical/lasem/tests/filter.c +8 -7
  47. data/ext/mathematical/lasem/tests/lasem.supp +185 -0
  48. data/ext/mathematical/lasem/tests/lsmtest.c +2 -9
  49. data/ext/mathematical/lasem/tests/meson.build +39 -0
  50. data/ext/mathematical/lasem/tests/str.c +0 -4
  51. data/ext/mathematical/lasem/tests/suite.c +0 -4
  52. data/ext/mathematical/lasem/viewer/meson.build +17 -0
  53. data/ext/mathematical/lasem/viewer/viewer.c +248 -0
  54. data/ext/mathematical/mtex2MML/script/tag +15 -14
  55. data/ext/mathematical/mtex2MML/src/lexer.l +4 -4
  56. data/ext/mathematical/mtex2MML/src/mtex2MML.h +7 -7
  57. data/ext/mathematical/mtex2MML/src/parser.y +5 -5
  58. data/ext/mathematical/mtex2MML/tests/clar.c +2 -2
  59. data/ext/mathematical/mtex2MML/tests/deps/trim/package.json +2 -2
  60. data/lib/mathematical/configuration.rb +8 -4
  61. data/lib/mathematical/corrections.rb +3 -1
  62. data/lib/mathematical/validator.rb +11 -8
  63. data/lib/mathematical/version.rb +3 -1
  64. data/lib/mathematical.rb +21 -19
  65. data/mathematical.gemspec +21 -22
  66. metadata +36 -336
  67. data/ext/mathematical/lasem/AUTHORS +0 -1
  68. data/ext/mathematical/lasem/ChangeLog +0 -0
  69. data/ext/mathematical/lasem/MAINTAINERS +0 -3
  70. data/ext/mathematical/lasem/Makefile.am +0 -34
  71. data/ext/mathematical/lasem/Makefile.decl +0 -57
  72. data/ext/mathematical/lasem/README +0 -28
  73. data/ext/mathematical/lasem/RELEASING +0 -85
  74. data/ext/mathematical/lasem/autogen.sh +0 -180
  75. data/ext/mathematical/lasem/configure.ac +0 -139
  76. data/ext/mathematical/lasem/docs/Makefile.am +0 -14
  77. data/ext/mathematical/lasem/docs/reference/Makefile.am +0 -3
  78. data/ext/mathematical/lasem/docs/reference/lasem/Makefile.am +0 -205
  79. data/ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml +0 -75
  80. data/ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml +0 -64
  81. data/ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt +0 -213
  82. data/ext/mathematical/lasem/docs/reference/lasem/lasem.types +0 -110
  83. data/ext/mathematical/lasem/itex2mml/Makefile.am +0 -37
  84. data/ext/mathematical/lasem/lasem.pc.in +0 -11
  85. data/ext/mathematical/lasem/m4/introspection.m4 +0 -96
  86. data/ext/mathematical/lasem/po/ChangeLog +0 -0
  87. data/ext/mathematical/lasem/po/ro.po +0 -64
  88. data/ext/mathematical/lasem/src/Makefile.am +0 -349
  89. data/ext/mathematical/lasem/src/lsmdomenumtypes.c.template +0 -39
  90. data/ext/mathematical/lasem/src/lsmdomenumtypes.h.template +0 -26
  91. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template +0 -39
  92. data/ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template +0 -26
  93. data/ext/mathematical/lasem/src/lsmsvgenumtypes.c.template +0 -39
  94. data/ext/mathematical/lasem/src/lsmsvgenumtypes.h.template +0 -26
  95. data/ext/mathematical/lasem/tests/Makefile.am +0 -34
  96. data/ext/mathematical/lib/liblasem.dylib +0 -0
  97. data/ext/mathematical/lib/libmtex2MML.a +0 -0
  98. data/ext/mathematical/mtex2MML/build/CMakeCache.txt +0 -512
  99. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCCompiler.cmake +0 -76
  100. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCXXCompiler.cmake +0 -88
  101. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_C.bin +0 -0
  102. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  103. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeSystem.cmake +0 -15
  104. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdC/CMakeCCompilerId.c +0 -671
  105. data/ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -660
  106. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake +0 -16
  107. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeError.log +0 -22
  108. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log +0 -351
  109. data/ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt +0 -34
  110. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake +0 -11
  111. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make +0 -76
  112. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake +0 -8
  113. data/ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make +0 -1
  114. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake +0 -11
  115. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make +0 -76
  116. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake +0 -8
  117. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make +0 -1
  118. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake +0 -11
  119. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make +0 -76
  120. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake +0 -8
  121. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make +0 -1
  122. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake +0 -11
  123. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make +0 -76
  124. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake +0 -8
  125. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make +0 -1
  126. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake +0 -11
  127. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make +0 -76
  128. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake +0 -8
  129. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make +0 -1
  130. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake +0 -11
  131. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make +0 -76
  132. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake +0 -8
  133. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make +0 -1
  134. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake +0 -11
  135. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make +0 -76
  136. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake +0 -8
  137. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make +0 -1
  138. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake +0 -11
  139. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make +0 -76
  140. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake +0 -8
  141. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make +0 -1
  142. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake +0 -11
  143. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make +0 -76
  144. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake +0 -8
  145. data/ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make +0 -1
  146. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake +0 -11
  147. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make +0 -76
  148. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake +0 -8
  149. data/ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make +0 -1
  150. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake +0 -11
  151. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make +0 -76
  152. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake +0 -8
  153. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make +0 -1
  154. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake +0 -11
  155. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make +0 -76
  156. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake +0 -8
  157. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make +0 -1
  158. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake +0 -11
  159. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make +0 -76
  160. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake +0 -8
  161. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make +0 -1
  162. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake +0 -11
  163. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make +0 -76
  164. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake +0 -8
  165. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make +0 -1
  166. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake +0 -11
  167. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make +0 -76
  168. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake +0 -8
  169. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make +0 -1
  170. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake +0 -11
  171. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make +0 -76
  172. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake +0 -8
  173. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make +0 -1
  174. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake +0 -11
  175. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make +0 -76
  176. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake +0 -8
  177. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make +0 -1
  178. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake +0 -11
  179. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make +0 -76
  180. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake +0 -8
  181. data/ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make +0 -1
  182. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake +0 -177
  183. data/ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2 +0 -1033
  184. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake +0 -11
  185. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make +0 -76
  186. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake +0 -8
  187. data/ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make +0 -1
  188. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake +0 -11
  189. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make +0 -76
  190. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake +0 -8
  191. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make +0 -1
  192. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake +0 -11
  193. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make +0 -76
  194. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake +0 -8
  195. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make +0 -1
  196. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake +0 -11
  197. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make +0 -76
  198. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake +0 -8
  199. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make +0 -1
  200. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake +0 -11
  201. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make +0 -76
  202. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake +0 -8
  203. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make +0 -1
  204. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake +0 -11
  205. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make +0 -76
  206. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake +0 -8
  207. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make +0 -1
  208. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake +0 -11
  209. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make +0 -76
  210. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake +0 -8
  211. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make +0 -1
  212. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake +0 -11
  213. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make +0 -76
  214. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake +0 -8
  215. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make +0 -1
  216. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake +0 -11
  217. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make +0 -76
  218. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake +0 -8
  219. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make +0 -1
  220. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake +0 -11
  221. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make +0 -76
  222. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake +0 -8
  223. data/ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make +0 -1
  224. data/ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt +0 -41
  225. data/ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache +0 -1
  226. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake +0 -11
  227. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make +0 -76
  228. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake +0 -8
  229. data/ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make +0 -1
  230. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake +0 -44
  231. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make +0 -206
  232. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake +0 -20
  233. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make +0 -2
  234. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make +0 -10
  235. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt +0 -1
  236. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make +0 -11
  237. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache +0 -244
  238. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake +0 -42
  239. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make +0 -203
  240. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake +0 -19
  241. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake +0 -3
  242. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal +0 -49
  243. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make +0 -49
  244. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make +0 -10
  245. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt +0 -2
  246. data/ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make +0 -11
  247. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake +0 -11
  248. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make +0 -76
  249. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake +0 -8
  250. data/ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make +0 -1
  251. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake +0 -43
  252. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make +0 -217
  253. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake +0 -20
  254. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make +0 -2
  255. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make +0 -10
  256. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt +0 -1
  257. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make +0 -12
  258. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake +0 -59
  259. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make +0 -473
  260. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake +0 -37
  261. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make +0 -2
  262. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make +0 -10
  263. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt +0 -1
  264. data/ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make +0 -29
  265. data/ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks +0 -1
  266. data/ext/mathematical/mtex2MML/build/CTestTestfile.cmake +0 -8
  267. data/ext/mathematical/mtex2MML/build/DartConfiguration.tcl +0 -105
  268. data/ext/mathematical/mtex2MML/build/Makefile +0 -1485
  269. data/ext/mathematical/mtex2MML/build/cmake_install.cmake +0 -102
  270. data/ext/mathematical/mtex2MML/build/lexer.c +0 -8903
  271. data/ext/mathematical/mtex2MML/build/libmtex2MML.a +0 -0
  272. data/ext/mathematical/mtex2MML/build/libmtex2MML.pc +0 -10
  273. data/ext/mathematical/mtex2MML/build/mtex2mml_export.h +0 -42
  274. data/ext/mathematical/mtex2MML/build/parser.c +0 -10334
  275. data/ext/mathematical/mtex2MML/build/parser.h +0 -625
  276. data/ext/mathematical/mtex2MML/build/parser.output +0 -120719
  277. data/test/mathematical/basic_test.rb +0 -89
  278. data/test/mathematical/corrections_test.rb +0 -16
  279. data/test/mathematical/delimiters_test.rb +0 -69
  280. data/test/mathematical/fixtures/after/backslashes.html +0 -5
  281. data/test/mathematical/fixtures/after/brackets_display.html +0 -1
  282. data/test/mathematical/fixtures/after/compliance_accents.html +0 -17
  283. data/test/mathematical/fixtures/after/compliance_arrows.html +0 -71
  284. data/test/mathematical/fixtures/after/compliance_colors.html +0 -4
  285. data/test/mathematical/fixtures/after/compliance_greek_letters.html +0 -42
  286. data/test/mathematical/fixtures/after/compliance_large_math.html +0 -19
  287. data/test/mathematical/fixtures/after/compliance_log_symbols.html +0 -34
  288. data/test/mathematical/fixtures/after/compliance_operators.html +0 -262
  289. data/test/mathematical/fixtures/after/dollar_sign_inline.html +0 -1
  290. data/test/mathematical/fixtures/after/equation_display.html +0 -1
  291. data/test/mathematical/fixtures/after/multiple_dollar_inline.html +0 -1
  292. data/test/mathematical/fixtures/after/parens_inline.html +0 -1
  293. data/test/mathematical/fixtures/before/backslashes.text +0 -17
  294. data/test/mathematical/fixtures/before/brackets_display.text +0 -1
  295. data/test/mathematical/fixtures/before/compliance_accents.text +0 -17
  296. data/test/mathematical/fixtures/before/compliance_arrows.text +0 -71
  297. data/test/mathematical/fixtures/before/compliance_colors.text +0 -4
  298. data/test/mathematical/fixtures/before/compliance_greek_letters.text +0 -42
  299. data/test/mathematical/fixtures/before/compliance_large_math.text +0 -19
  300. data/test/mathematical/fixtures/before/compliance_log_symbols.text +0 -34
  301. data/test/mathematical/fixtures/before/compliance_operators.text +0 -262
  302. data/test/mathematical/fixtures/before/dollar_sign_inline.text +0 -1
  303. data/test/mathematical/fixtures/before/equation_display.text +0 -1
  304. data/test/mathematical/fixtures/before/multiple_dollar_inline.text +0 -1
  305. data/test/mathematical/fixtures/before/parens_inline.text +0 -1
  306. data/test/mathematical/fixtures/performance/big_file.text +0 -1755
  307. data/test/mathematical/fixtures/png/numeric_test_1.png +0 -0
  308. data/test/mathematical/fixtures/png/numeric_test_2.png +0 -0
  309. data/test/mathematical/fixtures/png/numeric_test_3.png +0 -0
  310. data/test/mathematical/fixtures/png/pmatrix.png +0 -0
  311. data/test/mathematical/fixtures_test.rb +0 -51
  312. data/test/mathematical/maliciousness_test.rb +0 -152
  313. data/test/mathematical/mathjax_test.rb +0 -26
  314. data/test/mathematical/mathml_test.rb +0 -21
  315. data/test/mathematical/multiples_test.rb +0 -71
  316. data/test/mathematical/performance_test.rb +0 -15
  317. data/test/mathematical/png_test.rb +0 -30
  318. data/test/test_helper.rb +0 -72
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.6.14
4
+ version: 1.6.18
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-01-02 00:00:00.000000000 Z
11
+ date: 2023-11-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-enum
@@ -24,34 +24,21 @@ dependencies:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0.4'
27
+ force_ruby_platform: false
27
28
  - !ruby/object:Gem::Dependency
28
- name: rake
29
- requirement: !ruby/object:Gem::Requirement
30
- requirements:
31
- - - "~>"
32
- - !ruby/object:Gem::Version
33
- version: '13.0'
34
- type: :development
35
- prerelease: false
36
- version_requirements: !ruby/object:Gem::Requirement
37
- requirements:
38
- - - "~>"
39
- - !ruby/object:Gem::Version
40
- version: '13.0'
41
- - !ruby/object:Gem::Dependency
42
- name: rake-compiler
29
+ name: math-to-itex
43
30
  requirement: !ruby/object:Gem::Requirement
44
31
  requirements:
45
32
  - - "~>"
46
33
  - !ruby/object:Gem::Version
47
- version: '1.0'
34
+ version: '0.3'
48
35
  type: :development
49
36
  prerelease: false
50
37
  version_requirements: !ruby/object:Gem::Requirement
51
38
  requirements:
52
39
  - - "~>"
53
40
  - !ruby/object:Gem::Version
54
- version: '1.0'
41
+ version: '0.3'
55
42
  - !ruby/object:Gem::Dependency
56
43
  name: minitest
57
44
  requirement: !ruby/object:Gem::Requirement
@@ -66,20 +53,6 @@ dependencies:
66
53
  - - "~>"
67
54
  - !ruby/object:Gem::Version
68
55
  version: '5.6'
69
- - !ruby/object:Gem::Dependency
70
- name: math-to-itex
71
- requirement: !ruby/object:Gem::Requirement
72
- requirements:
73
- - - "~>"
74
- - !ruby/object:Gem::Version
75
- version: '0.3'
76
- type: :development
77
- prerelease: false
78
- version_requirements: !ruby/object:Gem::Requirement
79
- requirements:
80
- - - "~>"
81
- - !ruby/object:Gem::Version
82
- version: '0.3'
83
56
  - !ruby/object:Gem::Dependency
84
57
  name: nokogiri
85
58
  requirement: !ruby/object:Gem::Requirement
@@ -95,19 +68,19 @@ dependencies:
95
68
  - !ruby/object:Gem::Version
96
69
  version: '1.10'
97
70
  - !ruby/object:Gem::Dependency
98
- name: pry-byebug
71
+ name: rake-compiler
99
72
  requirement: !ruby/object:Gem::Requirement
100
73
  requirements:
101
74
  - - "~>"
102
75
  - !ruby/object:Gem::Version
103
- version: 3.9.0
76
+ version: '1.0'
104
77
  type: :development
105
78
  prerelease: false
106
79
  version_requirements: !ruby/object:Gem::Requirement
107
80
  requirements:
108
81
  - - "~>"
109
82
  - !ruby/object:Gem::Version
110
- version: 3.9.0
83
+ version: '1.0'
111
84
  description: A very fast way to turn TeX math equations into beautifully rendered
112
85
  SVGs, to embed on the web. This library is mostly written in C and is a general
113
86
  purpose wrapper to GNOME's Lasem.
@@ -126,36 +99,27 @@ files:
126
99
  - ext/mathematical/cairo_callbacks.c
127
100
  - ext/mathematical/cairo_callbacks.h
128
101
  - ext/mathematical/extconf.rb
129
- - ext/mathematical/lasem/AUTHORS
130
102
  - ext/mathematical/lasem/COPYING
131
- - ext/mathematical/lasem/ChangeLog
132
- - ext/mathematical/lasem/MAINTAINERS
133
- - ext/mathematical/lasem/Makefile.am
134
- - ext/mathematical/lasem/Makefile.decl
135
- - ext/mathematical/lasem/NEWS
136
- - ext/mathematical/lasem/README
137
- - ext/mathematical/lasem/RELEASING
103
+ - ext/mathematical/lasem/NEWS.md
104
+ - ext/mathematical/lasem/README.md
138
105
  - ext/mathematical/lasem/TODO
139
- - ext/mathematical/lasem/autogen.sh
140
- - ext/mathematical/lasem/configure.ac
141
- - ext/mathematical/lasem/docs/Makefile.am
142
106
  - ext/mathematical/lasem/docs/lasem-render-0.6.1
143
- - ext/mathematical/lasem/docs/reference/Makefile.am
144
- - ext/mathematical/lasem/docs/reference/lasem/Makefile.am
145
- - ext/mathematical/lasem/docs/reference/lasem/lasem-docs.xml
146
- - ext/mathematical/lasem/docs/reference/lasem/lasem-overview.xml
147
- - ext/mathematical/lasem/docs/reference/lasem/lasem-sections.txt
148
- - ext/mathematical/lasem/docs/reference/lasem/lasem.types
107
+ - ext/mathematical/lasem/docs/meson.build
108
+ - ext/mathematical/lasem/docs/reference/lasem/building.md
109
+ - ext/mathematical/lasem/docs/reference/lasem/lasem.toml.in
110
+ - ext/mathematical/lasem/docs/reference/lasem/meson.build
111
+ - ext/mathematical/lasem/docs/reference/lasem/overview.md
112
+ - ext/mathematical/lasem/docs/reference/lasem/urlmap.js
149
113
  - ext/mathematical/lasem/itex2mml/COPYING.itex2MML
150
- - ext/mathematical/lasem/itex2mml/Makefile.am
151
114
  - ext/mathematical/lasem/itex2mml/README.itex2MML
152
115
  - ext/mathematical/lasem/itex2mml/itex2MML.h
153
116
  - ext/mathematical/lasem/itex2mml/itex2MML.l
154
117
  - ext/mathematical/lasem/itex2mml/itex2MML.y
118
+ - ext/mathematical/lasem/itex2mml/meson.build
155
119
  - ext/mathematical/lasem/lasem.doap
156
- - ext/mathematical/lasem/lasem.pc.in
157
- - ext/mathematical/lasem/m4/introspection.m4
158
- - ext/mathematical/lasem/po/ChangeLog
120
+ - ext/mathematical/lasem/meson.build
121
+ - ext/mathematical/lasem/meson_options.txt
122
+ - ext/mathematical/lasem/org.lasem.Viewer.json
159
123
  - ext/mathematical/lasem/po/LINGUAS
160
124
  - ext/mathematical/lasem/po/POTFILES.in
161
125
  - ext/mathematical/lasem/po/POTFILES.skip
@@ -174,13 +138,13 @@ files:
174
138
  - ext/mathematical/lasem/po/it.po
175
139
  - ext/mathematical/lasem/po/lt.po
176
140
  - ext/mathematical/lasem/po/lv.po
141
+ - ext/mathematical/lasem/po/meson.build
177
142
  - ext/mathematical/lasem/po/nb.po
178
143
  - ext/mathematical/lasem/po/nl.po
179
144
  - ext/mathematical/lasem/po/oc.po
180
145
  - ext/mathematical/lasem/po/pl.po
181
146
  - ext/mathematical/lasem/po/pt.po
182
147
  - ext/mathematical/lasem/po/pt_BR.po
183
- - ext/mathematical/lasem/po/ro.po
184
148
  - ext/mathematical/lasem/po/ru.po
185
149
  - ext/mathematical/lasem/po/sl.po
186
150
  - ext/mathematical/lasem/po/sr.po
@@ -189,7 +153,6 @@ files:
189
153
  - ext/mathematical/lasem/po/tg.po
190
154
  - ext/mathematical/lasem/po/tr.po
191
155
  - ext/mathematical/lasem/po/zh_CN.po
192
- - ext/mathematical/lasem/src/Makefile.am
193
156
  - ext/mathematical/lasem/src/lasemrender.c
194
157
  - ext/mathematical/lasem/src/lsm.c
195
158
  - ext/mathematical/lasem/src/lsm.h
@@ -210,8 +173,6 @@ files:
210
173
  - ext/mathematical/lasem/src/lsmdomelement.h
211
174
  - ext/mathematical/lasem/src/lsmdomentities.c
212
175
  - ext/mathematical/lasem/src/lsmdomentities.h
213
- - ext/mathematical/lasem/src/lsmdomenumtypes.c.template
214
- - ext/mathematical/lasem/src/lsmdomenumtypes.h.template
215
176
  - ext/mathematical/lasem/src/lsmdomimplementation.c
216
177
  - ext/mathematical/lasem/src/lsmdomimplementation.h
217
178
  - ext/mathematical/lasem/src/lsmdomnamednodemap.c
@@ -246,8 +207,6 @@ files:
246
207
  - ext/mathematical/lasem/src/lsmmathmlencloseelement.h
247
208
  - ext/mathematical/lasem/src/lsmmathmlenums.c
248
209
  - ext/mathematical/lasem/src/lsmmathmlenums.h
249
- - ext/mathematical/lasem/src/lsmmathmlenumtypes.c.template
250
- - ext/mathematical/lasem/src/lsmmathmlenumtypes.h.template
251
210
  - ext/mathematical/lasem/src/lsmmathmlerrorelement.c
252
211
  - ext/mathematical/lasem/src/lsmmathmlerrorelement.h
253
212
  - ext/mathematical/lasem/src/lsmmathmlfencedelement.c
@@ -305,6 +264,8 @@ files:
305
264
  - ext/mathematical/lasem/src/lsmmathmlutils.h
306
265
  - ext/mathematical/lasem/src/lsmmathmlview.c
307
266
  - ext/mathematical/lasem/src/lsmmathmlview.h
267
+ - ext/mathematical/lasem/src/lsmmisc.c
268
+ - ext/mathematical/lasem/src/lsmmisc.h
308
269
  - ext/mathematical/lasem/src/lsmproperties.c
309
270
  - ext/mathematical/lasem/src/lsmproperties.h
310
271
  - ext/mathematical/lasem/src/lsmstr.c
@@ -329,8 +290,6 @@ files:
329
290
  - ext/mathematical/lasem/src/lsmsvgellipseelement.h
330
291
  - ext/mathematical/lasem/src/lsmsvgenums.c
331
292
  - ext/mathematical/lasem/src/lsmsvgenums.h
332
- - ext/mathematical/lasem/src/lsmsvgenumtypes.c.template
333
- - ext/mathematical/lasem/src/lsmsvgenumtypes.h.template
334
293
  - ext/mathematical/lasem/src/lsmsvgfilterblend.c
335
294
  - ext/mathematical/lasem/src/lsmsvgfilterblend.h
336
295
  - ext/mathematical/lasem/src/lsmsvgfiltercolormatrix.c
@@ -425,7 +384,8 @@ files:
425
384
  - ext/mathematical/lasem/src/lsmtypes.h
426
385
  - ext/mathematical/lasem/src/lsmutils.c
427
386
  - ext/mathematical/lasem/src/lsmutils.h
428
- - ext/mathematical/lasem/tests/Makefile.am
387
+ - ext/mathematical/lasem/src/meson.build
388
+ - ext/mathematical/lasem/subprojects/gi-docgen.wrap
429
389
  - ext/mathematical/lasem/tests/data/mathml/gtkmathview/README
430
390
  - ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-02.tex
431
391
  - ext/mathematical/lasem/tests/data/mathml/tex/fractions/fraction-03-inline.tex
@@ -435,6 +395,7 @@ files:
435
395
  - ext/mathematical/lasem/tests/data/mathml/tex/integrals/multiples.tex
436
396
  - ext/mathematical/lasem/tests/data/mathml/tex/integrals/standard.tex
437
397
  - ext/mathematical/lasem/tests/data/mathml/tex/matrices/matrix-01.tex
398
+ - ext/mathematical/lasem/tests/data/mathml/tex/misc/array.tex
438
399
  - ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-cr.tex
439
400
  - ext/mathematical/lasem/tests/data/mathml/tex/misc/cases-space.tex
440
401
  - ext/mathematical/lasem/tests/data/mathml/tex/misc/cases.tex
@@ -537,7 +498,9 @@ files:
537
498
  - ext/mathematical/lasem/tests/dom.c
538
499
  - ext/mathematical/lasem/tests/filter.c
539
500
  - ext/mathematical/lasem/tests/fuzztest.sh
501
+ - ext/mathematical/lasem/tests/lasem.supp
540
502
  - ext/mathematical/lasem/tests/lsmtest.c
503
+ - ext/mathematical/lasem/tests/meson.build
541
504
  - ext/mathematical/lasem/tests/str.c
542
505
  - ext/mathematical/lasem/tests/suite.c
543
506
  - ext/mathematical/lasem/tests/suite.ini
@@ -547,10 +510,10 @@ files:
547
510
  - ext/mathematical/lasem/tools/fuzzxml
548
511
  - ext/mathematical/lasem/tools/generate-entity-array.c
549
512
  - ext/mathematical/lasem/tools/unicode.xml
513
+ - ext/mathematical/lasem/viewer/meson.build
514
+ - ext/mathematical/lasem/viewer/viewer.c
550
515
  - ext/mathematical/lasem_overrides.c
551
516
  - ext/mathematical/lasem_overrides.h
552
- - ext/mathematical/lib/liblasem.dylib
553
- - ext/mathematical/lib/libmtex2MML.a
554
517
  - ext/mathematical/mathematical.c
555
518
  - ext/mathematical/mathematical.h
556
519
  - ext/mathematical/mtex2MML/CMakeLists.txt
@@ -558,185 +521,6 @@ files:
558
521
  - ext/mathematical/mtex2MML/README.md
559
522
  - ext/mathematical/mtex2MML/SUPPORTED.md
560
523
  - ext/mathematical/mtex2MML/appveyor.yml
561
- - ext/mathematical/mtex2MML/build/CMakeCache.txt
562
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCCompiler.cmake
563
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeCXXCompiler.cmake
564
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_C.bin
565
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeDetermineCompilerABI_CXX.bin
566
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CMakeSystem.cmake
567
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdC/CMakeCCompilerId.c
568
- - ext/mathematical/mtex2MML/build/CMakeFiles/3.16.2/CompilerIdCXX/CMakeCXXCompilerId.cpp
569
- - ext/mathematical/mtex2MML/build/CMakeFiles/CMakeDirectoryInformation.cmake
570
- - ext/mathematical/mtex2MML/build/CMakeFiles/CMakeError.log
571
- - ext/mathematical/mtex2MML/build/CMakeFiles/CMakeOutput.log
572
- - ext/mathematical/mtex2MML/build/CMakeFiles/CMakeRuleHashes.txt
573
- - ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/DependInfo.cmake
574
- - ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/build.make
575
- - ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/cmake_clean.cmake
576
- - ext/mathematical/mtex2MML/build/CMakeFiles/Continuous.dir/progress.make
577
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/DependInfo.cmake
578
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/build.make
579
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/cmake_clean.cmake
580
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousBuild.dir/progress.make
581
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/DependInfo.cmake
582
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/build.make
583
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/cmake_clean.cmake
584
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousConfigure.dir/progress.make
585
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/DependInfo.cmake
586
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/build.make
587
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/cmake_clean.cmake
588
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousCoverage.dir/progress.make
589
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/DependInfo.cmake
590
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/build.make
591
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/cmake_clean.cmake
592
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousMemCheck.dir/progress.make
593
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/DependInfo.cmake
594
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/build.make
595
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/cmake_clean.cmake
596
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousStart.dir/progress.make
597
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/DependInfo.cmake
598
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/build.make
599
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/cmake_clean.cmake
600
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousSubmit.dir/progress.make
601
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/DependInfo.cmake
602
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/build.make
603
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/cmake_clean.cmake
604
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousTest.dir/progress.make
605
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/DependInfo.cmake
606
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/build.make
607
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/cmake_clean.cmake
608
- - ext/mathematical/mtex2MML/build/CMakeFiles/ContinuousUpdate.dir/progress.make
609
- - ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/DependInfo.cmake
610
- - ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/build.make
611
- - ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/cmake_clean.cmake
612
- - ext/mathematical/mtex2MML/build/CMakeFiles/Experimental.dir/progress.make
613
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/DependInfo.cmake
614
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/build.make
615
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/cmake_clean.cmake
616
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalBuild.dir/progress.make
617
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/DependInfo.cmake
618
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/build.make
619
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/cmake_clean.cmake
620
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalConfigure.dir/progress.make
621
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/DependInfo.cmake
622
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/build.make
623
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/cmake_clean.cmake
624
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalCoverage.dir/progress.make
625
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/DependInfo.cmake
626
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/build.make
627
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/cmake_clean.cmake
628
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalMemCheck.dir/progress.make
629
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/DependInfo.cmake
630
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/build.make
631
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/cmake_clean.cmake
632
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalStart.dir/progress.make
633
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/DependInfo.cmake
634
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/build.make
635
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/cmake_clean.cmake
636
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalSubmit.dir/progress.make
637
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/DependInfo.cmake
638
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/build.make
639
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/cmake_clean.cmake
640
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalTest.dir/progress.make
641
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/DependInfo.cmake
642
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/build.make
643
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/cmake_clean.cmake
644
- - ext/mathematical/mtex2MML/build/CMakeFiles/ExperimentalUpdate.dir/progress.make
645
- - ext/mathematical/mtex2MML/build/CMakeFiles/Makefile.cmake
646
- - ext/mathematical/mtex2MML/build/CMakeFiles/Makefile2
647
- - ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/DependInfo.cmake
648
- - ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/build.make
649
- - ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/cmake_clean.cmake
650
- - ext/mathematical/mtex2MML/build/CMakeFiles/Nightly.dir/progress.make
651
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/DependInfo.cmake
652
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/build.make
653
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/cmake_clean.cmake
654
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyBuild.dir/progress.make
655
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/DependInfo.cmake
656
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/build.make
657
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/cmake_clean.cmake
658
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyConfigure.dir/progress.make
659
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/DependInfo.cmake
660
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/build.make
661
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/cmake_clean.cmake
662
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyCoverage.dir/progress.make
663
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/DependInfo.cmake
664
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/build.make
665
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/cmake_clean.cmake
666
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemCheck.dir/progress.make
667
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/DependInfo.cmake
668
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/build.make
669
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/cmake_clean.cmake
670
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyMemoryCheck.dir/progress.make
671
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/DependInfo.cmake
672
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/build.make
673
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/cmake_clean.cmake
674
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyStart.dir/progress.make
675
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/DependInfo.cmake
676
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/build.make
677
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/cmake_clean.cmake
678
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlySubmit.dir/progress.make
679
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/DependInfo.cmake
680
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/build.make
681
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/cmake_clean.cmake
682
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyTest.dir/progress.make
683
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/DependInfo.cmake
684
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/build.make
685
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/cmake_clean.cmake
686
- - ext/mathematical/mtex2MML/build/CMakeFiles/NightlyUpdate.dir/progress.make
687
- - ext/mathematical/mtex2MML/build/CMakeFiles/TargetDirectories.txt
688
- - ext/mathematical/mtex2MML/build/CMakeFiles/cmake.check_cache
689
- - ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/DependInfo.cmake
690
- - ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/build.make
691
- - ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/cmake_clean.cmake
692
- - ext/mathematical/mtex2MML/build/CMakeFiles/format.dir/progress.make
693
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/DependInfo.cmake
694
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/build.make
695
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/cmake_clean.cmake
696
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/depend.make
697
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/flags.make
698
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/link.txt
699
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML.dir/progress.make
700
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/C.includecache
701
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/DependInfo.cmake
702
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/build.make
703
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean.cmake
704
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/cmake_clean_target.cmake
705
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.internal
706
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/depend.make
707
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/flags.make
708
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/link.txt
709
- - ext/mathematical/mtex2MML/build/CMakeFiles/libmtex2MML_static.dir/progress.make
710
- - ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/DependInfo.cmake
711
- - ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/build.make
712
- - ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/cmake_clean.cmake
713
- - ext/mathematical/mtex2MML/build/CMakeFiles/memcheck.dir/progress.make
714
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/DependInfo.cmake
715
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/build.make
716
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/cmake_clean.cmake
717
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/depend.make
718
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/flags.make
719
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/link.txt
720
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML.dir/progress.make
721
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/DependInfo.cmake
722
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/build.make
723
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/cmake_clean.cmake
724
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/depend.make
725
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/flags.make
726
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/link.txt
727
- - ext/mathematical/mtex2MML/build/CMakeFiles/mtex2MML_clar.dir/progress.make
728
- - ext/mathematical/mtex2MML/build/CMakeFiles/progress.marks
729
- - ext/mathematical/mtex2MML/build/CTestTestfile.cmake
730
- - ext/mathematical/mtex2MML/build/DartConfiguration.tcl
731
- - ext/mathematical/mtex2MML/build/Makefile
732
- - ext/mathematical/mtex2MML/build/cmake_install.cmake
733
- - ext/mathematical/mtex2MML/build/lexer.c
734
- - ext/mathematical/mtex2MML/build/libmtex2MML.a
735
- - ext/mathematical/mtex2MML/build/libmtex2MML.pc
736
- - ext/mathematical/mtex2MML/build/mtex2mml_export.h
737
- - ext/mathematical/mtex2MML/build/parser.c
738
- - ext/mathematical/mtex2MML/build/parser.h
739
- - ext/mathematical/mtex2MML/build/parser.output
740
524
  - ext/mathematical/mtex2MML/cmake/Modules/astyle.cmake
741
525
  - ext/mathematical/mtex2MML/deps/uthash/package.json
742
526
  - ext/mathematical/mtex2MML/deps/uthash/utarray.h
@@ -1505,53 +1289,11 @@ files:
1505
1289
  - lib/mathematical/validator.rb
1506
1290
  - lib/mathematical/version.rb
1507
1291
  - mathematical.gemspec
1508
- - test/mathematical/basic_test.rb
1509
- - test/mathematical/corrections_test.rb
1510
- - test/mathematical/delimiters_test.rb
1511
- - test/mathematical/fixtures/after/backslashes.html
1512
- - test/mathematical/fixtures/after/brackets_display.html
1513
- - test/mathematical/fixtures/after/compliance_accents.html
1514
- - test/mathematical/fixtures/after/compliance_arrows.html
1515
- - test/mathematical/fixtures/after/compliance_colors.html
1516
- - test/mathematical/fixtures/after/compliance_greek_letters.html
1517
- - test/mathematical/fixtures/after/compliance_large_math.html
1518
- - test/mathematical/fixtures/after/compliance_log_symbols.html
1519
- - test/mathematical/fixtures/after/compliance_operators.html
1520
- - test/mathematical/fixtures/after/dollar_sign_inline.html
1521
- - test/mathematical/fixtures/after/equation_display.html
1522
- - test/mathematical/fixtures/after/multiple_dollar_inline.html
1523
- - test/mathematical/fixtures/after/parens_inline.html
1524
- - test/mathematical/fixtures/before/backslashes.text
1525
- - test/mathematical/fixtures/before/brackets_display.text
1526
- - test/mathematical/fixtures/before/compliance_accents.text
1527
- - test/mathematical/fixtures/before/compliance_arrows.text
1528
- - test/mathematical/fixtures/before/compliance_colors.text
1529
- - test/mathematical/fixtures/before/compliance_greek_letters.text
1530
- - test/mathematical/fixtures/before/compliance_large_math.text
1531
- - test/mathematical/fixtures/before/compliance_log_symbols.text
1532
- - test/mathematical/fixtures/before/compliance_operators.text
1533
- - test/mathematical/fixtures/before/dollar_sign_inline.text
1534
- - test/mathematical/fixtures/before/equation_display.text
1535
- - test/mathematical/fixtures/before/multiple_dollar_inline.text
1536
- - test/mathematical/fixtures/before/parens_inline.text
1537
- - test/mathematical/fixtures/performance/big_file.text
1538
- - test/mathematical/fixtures/png/numeric_test_1.png
1539
- - test/mathematical/fixtures/png/numeric_test_2.png
1540
- - test/mathematical/fixtures/png/numeric_test_3.png
1541
- - test/mathematical/fixtures/png/pmatrix.png
1542
- - test/mathematical/fixtures_test.rb
1543
- - test/mathematical/maliciousness_test.rb
1544
- - test/mathematical/mathjax_test.rb
1545
- - test/mathematical/mathml_test.rb
1546
- - test/mathematical/multiples_test.rb
1547
- - test/mathematical/performance_test.rb
1548
- - test/mathematical/png_test.rb
1549
- - test/test_helper.rb
1550
1292
  homepage: https://github.com/gjtorikian/mathematical
1551
1293
  licenses:
1552
1294
  - MIT
1553
1295
  metadata: {}
1554
- post_install_message:
1296
+ post_install_message:
1555
1297
  rdoc_options: []
1556
1298
  require_paths:
1557
1299
  - lib
@@ -1567,50 +1309,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1567
1309
  - !ruby/object:Gem::Version
1568
1310
  version: '0'
1569
1311
  requirements: []
1570
- rubygems_version: 3.1.4
1571
- signing_key:
1312
+ rubygems_version: 3.4.22
1313
+ signing_key:
1572
1314
  specification_version: 4
1573
1315
  summary: Quickly convert math equations into beautiful SVGs/PNGs/MathML.
1574
- test_files:
1575
- - test/test_helper.rb
1576
- - test/mathematical/basic_test.rb
1577
- - test/mathematical/png_test.rb
1578
- - test/mathematical/performance_test.rb
1579
- - test/mathematical/mathml_test.rb
1580
- - test/mathematical/fixtures/png/numeric_test_1.png
1581
- - test/mathematical/fixtures/png/numeric_test_2.png
1582
- - test/mathematical/fixtures/png/numeric_test_3.png
1583
- - test/mathematical/fixtures/png/pmatrix.png
1584
- - test/mathematical/fixtures/before/compliance_arrows.text
1585
- - test/mathematical/fixtures/before/compliance_colors.text
1586
- - test/mathematical/fixtures/before/compliance_log_symbols.text
1587
- - test/mathematical/fixtures/before/compliance_large_math.text
1588
- - test/mathematical/fixtures/before/multiple_dollar_inline.text
1589
- - test/mathematical/fixtures/before/backslashes.text
1590
- - test/mathematical/fixtures/before/dollar_sign_inline.text
1591
- - test/mathematical/fixtures/before/equation_display.text
1592
- - test/mathematical/fixtures/before/parens_inline.text
1593
- - test/mathematical/fixtures/before/brackets_display.text
1594
- - test/mathematical/fixtures/before/compliance_operators.text
1595
- - test/mathematical/fixtures/before/compliance_accents.text
1596
- - test/mathematical/fixtures/before/compliance_greek_letters.text
1597
- - test/mathematical/fixtures/after/parens_inline.html
1598
- - test/mathematical/fixtures/after/brackets_display.html
1599
- - test/mathematical/fixtures/after/equation_display.html
1600
- - test/mathematical/fixtures/after/compliance_accents.html
1601
- - test/mathematical/fixtures/after/compliance_greek_letters.html
1602
- - test/mathematical/fixtures/after/compliance_operators.html
1603
- - test/mathematical/fixtures/after/compliance_log_symbols.html
1604
- - test/mathematical/fixtures/after/compliance_large_math.html
1605
- - test/mathematical/fixtures/after/multiple_dollar_inline.html
1606
- - test/mathematical/fixtures/after/backslashes.html
1607
- - test/mathematical/fixtures/after/compliance_arrows.html
1608
- - test/mathematical/fixtures/after/compliance_colors.html
1609
- - test/mathematical/fixtures/after/dollar_sign_inline.html
1610
- - test/mathematical/fixtures/performance/big_file.text
1611
- - test/mathematical/mathjax_test.rb
1612
- - test/mathematical/corrections_test.rb
1613
- - test/mathematical/maliciousness_test.rb
1614
- - test/mathematical/fixtures_test.rb
1615
- - test/mathematical/multiples_test.rb
1616
- - test/mathematical/delimiters_test.rb
1316
+ test_files: []
@@ -1 +0,0 @@
1
- Emmanuel Pacaud <emmanuel@gnome.org>
File without changes
@@ -1,3 +0,0 @@
1
- Emmanuel Pacaud
2
- E-mail: emmanuel@gnome.org
3
- Userid: emmanuel
@@ -1,34 +0,0 @@
1
- include $(top_srcdir)/Makefile.decl
2
-
3
- ACLOCAL_AMFLAGS = -I m4
4
-
5
- DISTCHECK_CONFIGURE_FLAGS = --enable-introspection --enable-gtk-doc
6
-
7
- SUBDIRS = itex2mml src tests po docs
8
-
9
- lasemdocdir = ${prefix}/doc/lasem-@LASEM_API_VERSION@
10
- lasemdoc_DATA = \
11
- README \
12
- COPYING \
13
- ChangeLog \
14
- AUTHORS \
15
- INSTALL \
16
- NEWS
17
-
18
- EXTRA_DIST = $(lasemdoc_DATA) m4/introspection.m4
19
-
20
- # Copy all the spec files. Of cource, only one is actually used.
21
- dist-hook:
22
- for specfile in *.spec; do \
23
- if test -f $$specfile; then \
24
- cp -p $$specfile $(distdir); \
25
- fi \
26
- done
27
-
28
- pkgconfigdir = $(libdir)/pkgconfig
29
- pkgconfig_DATA = lasem-@LASEM_API_VERSION@.pc
30
-
31
- CLEANFILES = $(pkgconfig_DATA)
32
-
33
- %-@LASEM_API_VERSION@.pc: %.pc
34
- cp $< $@
@@ -1,57 +0,0 @@
1
- # GLIB - Library of useful C routines
2
-
3
- GTESTER = gtester
4
- GTESTER_REPORT = gtester-report
5
-
6
- # initialize variables for unconditional += appending
7
- TEST_PROGS =
8
-
9
- ### testing rules
10
-
11
- # test: run all tests in cwd and subdirs
12
- test: ${TEST_PROGS}
13
- @test -z "${TEST_PROGS}" || ${GTESTER} --verbose ${TEST_PROGS}
14
- @ for subdir in $(SUBDIRS) . ; do \
15
- test "$$subdir" = "." -o "$$subdir" = "po" || \
16
- ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
17
- done
18
-
19
- # test-report: run tests in subdirs and generate report
20
- # perf-report: run tests in subdirs with -m perf and generate report
21
- # full-report: like test-report: with -m perf and -m slow
22
- test-report perf-report full-report: ${TEST_PROGS}
23
- @test -z "${TEST_PROGS}" || { \
24
- case $@ in \
25
- test-report) test_options="-k";; \
26
- perf-report) test_options="-k -m=perf";; \
27
- full-report) test_options="-k -m=perf -m=slow";; \
28
- esac ; \
29
- if test -z "$$GTESTER_LOGDIR" ; then \
30
- ${GTESTER} --verbose $$test_options -o test-report.xml ${TEST_PROGS} ; \
31
- elif test -n "${TEST_PROGS}" ; then \
32
- ${GTESTER} --verbose $$test_options -o `mktemp "$$GTESTER_LOGDIR/log-XXXXXX"` ${TEST_PROGS} ; \
33
- fi ; \
34
- }
35
- @ ignore_logdir=true ; \
36
- if test -z "$$GTESTER_LOGDIR" ; then \
37
- GTESTER_LOGDIR=`mktemp -d "\`pwd\`/.testlogs-XXXXXX"`; export GTESTER_LOGDIR ; \
38
- ignore_logdir=false ; \
39
- fi ; \
40
- for subdir in $(SUBDIRS) . ; do \
41
- test "$$subdir" = "." -o "$$subdir" = "po" || \
42
- ( cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $@ ) || exit $? ; \
43
- done ; \
44
- $$ignore_logdir || { \
45
- echo '<?xml version="1.0"?>' > $@.xml ; \
46
- echo '<report-collection>' >> $@.xml ; \
47
- for lf in `ls -L "$$GTESTER_LOGDIR"/.` ; do \
48
- sed '1,1s/^<?xml\b[^>?]*?>//' <"$$GTESTER_LOGDIR"/"$$lf" >> $@.xml ; \
49
- done ; \
50
- echo >> $@.xml ; \
51
- echo '</report-collection>' >> $@.xml ; \
52
- rm -rf "$$GTESTER_LOGDIR"/ ; \
53
- ${GTESTER_REPORT} --version 2>/dev/null 1>&2 ; test "$$?" != 0 || ${GTESTER_REPORT} $@.xml >$@.html ; \
54
- }
55
- .PHONY: test test-report perf-report full-report
56
- # run make test as part of make check
57
- check-local: test