mathematical 1.6.11 → 1.6.12

Sign up to get free protection for your applications and to get access to all the features.
Files changed (33) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +2 -1
  3. data/ext/mathematical/lasem/po/LINGUAS +2 -0
  4. data/ext/mathematical/lasem/po/es.po +38 -18
  5. data/ext/mathematical/lasem/po/fur.po +101 -0
  6. data/ext/mathematical/lasem/po/lv.po +72 -29
  7. data/ext/mathematical/lasem/po/nl.po +102 -0
  8. data/ext/mathematical/lasem/po/sl.po +53 -18
  9. data/ext/mathematical/lasem/po/zh_CN.po +71 -34
  10. data/ext/mathematical/lasem/src/lasemrender.c +2 -2
  11. data/ext/mathematical/lasem/src/lsmcairo.c +1 -1
  12. data/ext/mathematical/lasem/src/lsmdomparser.c +7 -7
  13. data/ext/mathematical/lasem/src/lsmdomparser.h +3 -3
  14. data/ext/mathematical/lasem/src/lsmdomview.c +6 -6
  15. data/ext/mathematical/mtex2MML/CMakeLists.txt +6 -1
  16. data/ext/mathematical/mtex2MML/README.md +1 -1
  17. data/ext/mathematical/mtex2MML/script/bootstrap +21 -6
  18. data/ext/mathematical/mtex2MML/script/cibuild +4 -3
  19. data/ext/mathematical/mtex2MML/src/lexer.l +6 -3
  20. data/ext/mathematical/mtex2MML/src/libmtex2MML.pc.in +1 -1
  21. data/ext/mathematical/mtex2MML/src/parser.y +13 -1
  22. data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/other/not-1.html +1 -1
  23. data/ext/mathematical/mtex2MML/tests/fixtures/MathJax/LaTeXToMathML-out/symbols/relations-1.html +1 -1
  24. data/ext/mathematical/mtex2MML/tests/fixtures/basic/filter.html +1 -1
  25. data/ext/mathematical/mtex2MML/tests/fixtures/basic/text_filter.html +1 -1
  26. data/ext/mathematical/mtex2MML/tests/fixtures/functions/prod_limits.html +1 -0
  27. data/ext/mathematical/mtex2MML/tests/fixtures/functions/prod_limits.txt +1 -0
  28. data/ext/mathematical/mtex2MML/tests/fixtures/performance/big_file.html +4 -4
  29. data/ext/mathematical/mtex2MML/tests/functions.c +9 -0
  30. data/ext/mathematical/mtex2MML/tests/mathjax.c +592 -592
  31. data/ext/mathematical/mtex2MML/tests/mathjax_generate.py +1 -1
  32. data/lib/mathematical/version.rb +1 -1
  33. metadata +38 -34
@@ -4,7 +4,7 @@ PATH = os.path.dirname(os.path.realpath(__file__))
4
4
  MATHJAX_TEST_TEST_DIR = os.path.join(PATH, 'fixtures', 'MathJax')
5
5
  MATHJAX_TEST_TEXT_DIR = os.path.join(MATHJAX_TEST_TEST_DIR, 'LaTeXToMathML-tex')
6
6
  MATHJAX_TEST_OUT_DIR = os.path.join(MATHJAX_TEST_TEST_DIR, 'LaTeXToMathML-out')
7
- MAGIC_LINE = "/* EVERYTHING BELOW IS AUTOGENERATED */\n"
7
+ MAGIC_LINE = "/* EVERYTHING BELOW IS AUTOGENERATED BY mathjax_generate.py */\n"
8
8
 
9
9
  template = string.Template("""void test_mathjax__$sanitized_name(void)
10
10
  {
@@ -1,3 +1,3 @@
1
1
  class Mathematical
2
- VERSION = '1.6.11'.freeze
2
+ VERSION = '1.6.12'.freeze
3
3
  end
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.11
4
+ version: 1.6.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Garen Torikian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-09-24 00:00:00.000000000 Z
11
+ date: 2018-09-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: ruby-enum
@@ -181,6 +181,7 @@ files:
181
181
  - ext/mathematical/lasem/po/es.po
182
182
  - ext/mathematical/lasem/po/eu.po
183
183
  - ext/mathematical/lasem/po/fr.po
184
+ - ext/mathematical/lasem/po/fur.po
184
185
  - ext/mathematical/lasem/po/gl.po
185
186
  - ext/mathematical/lasem/po/hu.po
186
187
  - ext/mathematical/lasem/po/id.po
@@ -188,6 +189,7 @@ files:
188
189
  - ext/mathematical/lasem/po/lt.po
189
190
  - ext/mathematical/lasem/po/lv.po
190
191
  - ext/mathematical/lasem/po/nb.po
192
+ - ext/mathematical/lasem/po/nl.po
191
193
  - ext/mathematical/lasem/po/oc.po
192
194
  - ext/mathematical/lasem/po/pl.po
193
195
  - ext/mathematical/lasem/po/pt.po
@@ -1483,6 +1485,8 @@ files:
1483
1485
  - ext/mathematical/mtex2MML/tests/fixtures/functions/max_limits.txt
1484
1486
  - ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.html
1485
1487
  - ext/mathematical/mtex2MML/tests/fixtures/functions/min_limits.txt
1488
+ - ext/mathematical/mtex2MML/tests/fixtures/functions/prod_limits.html
1489
+ - ext/mathematical/mtex2MML/tests/fixtures/functions/prod_limits.txt
1486
1490
  - ext/mathematical/mtex2MML/tests/fixtures/maliciousness/excess_parsing.txt
1487
1491
  - ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.html
1488
1492
  - ext/mathematical/mtex2MML/tests/fixtures/maliciousness/just_enough_parsing.txt
@@ -1595,45 +1599,45 @@ signing_key:
1595
1599
  specification_version: 4
1596
1600
  summary: Quickly convert math equations into beautiful SVGs/PNGs/MathML.
1597
1601
  test_files:
1602
+ - test/test_helper.rb
1598
1603
  - test/mathematical/basic_test.rb
1599
- - test/mathematical/corrections_test.rb
1600
- - test/mathematical/delimiters_test.rb
1601
- - test/mathematical/fixtures/after/backslashes.html
1602
- - test/mathematical/fixtures/after/brackets_display.html
1603
- - test/mathematical/fixtures/after/compliance_accents.html
1604
- - test/mathematical/fixtures/after/compliance_arrows.html
1605
- - test/mathematical/fixtures/after/compliance_colors.html
1606
- - test/mathematical/fixtures/after/compliance_greek_letters.html
1607
- - test/mathematical/fixtures/after/compliance_large_math.html
1608
- - test/mathematical/fixtures/after/compliance_log_symbols.html
1609
- - test/mathematical/fixtures/after/compliance_operators.html
1610
- - test/mathematical/fixtures/after/dollar_sign_inline.html
1611
- - test/mathematical/fixtures/after/equation_display.html
1612
- - test/mathematical/fixtures/after/multiple_dollar_inline.html
1613
- - test/mathematical/fixtures/after/parens_inline.html
1614
- - test/mathematical/fixtures/before/backslashes.text
1615
- - test/mathematical/fixtures/before/brackets_display.text
1616
- - test/mathematical/fixtures/before/compliance_accents.text
1604
+ - test/mathematical/png_test.rb
1605
+ - test/mathematical/performance_test.rb
1606
+ - test/mathematical/mathml_test.rb
1607
+ - test/mathematical/fixtures/png/numeric_test_1.png
1608
+ - test/mathematical/fixtures/png/numeric_test_2.png
1609
+ - test/mathematical/fixtures/png/numeric_test_3.png
1610
+ - test/mathematical/fixtures/png/pmatrix.png
1617
1611
  - test/mathematical/fixtures/before/compliance_arrows.text
1618
1612
  - test/mathematical/fixtures/before/compliance_colors.text
1619
- - test/mathematical/fixtures/before/compliance_greek_letters.text
1620
- - test/mathematical/fixtures/before/compliance_large_math.text
1621
1613
  - test/mathematical/fixtures/before/compliance_log_symbols.text
1622
- - test/mathematical/fixtures/before/compliance_operators.text
1614
+ - test/mathematical/fixtures/before/compliance_large_math.text
1615
+ - test/mathematical/fixtures/before/multiple_dollar_inline.text
1616
+ - test/mathematical/fixtures/before/backslashes.text
1623
1617
  - test/mathematical/fixtures/before/dollar_sign_inline.text
1624
1618
  - test/mathematical/fixtures/before/equation_display.text
1625
- - test/mathematical/fixtures/before/multiple_dollar_inline.text
1626
1619
  - test/mathematical/fixtures/before/parens_inline.text
1620
+ - test/mathematical/fixtures/before/brackets_display.text
1621
+ - test/mathematical/fixtures/before/compliance_operators.text
1622
+ - test/mathematical/fixtures/before/compliance_accents.text
1623
+ - test/mathematical/fixtures/before/compliance_greek_letters.text
1624
+ - test/mathematical/fixtures/after/parens_inline.html
1625
+ - test/mathematical/fixtures/after/brackets_display.html
1626
+ - test/mathematical/fixtures/after/equation_display.html
1627
+ - test/mathematical/fixtures/after/compliance_accents.html
1628
+ - test/mathematical/fixtures/after/compliance_greek_letters.html
1629
+ - test/mathematical/fixtures/after/compliance_operators.html
1630
+ - test/mathematical/fixtures/after/compliance_log_symbols.html
1631
+ - test/mathematical/fixtures/after/compliance_large_math.html
1632
+ - test/mathematical/fixtures/after/multiple_dollar_inline.html
1633
+ - test/mathematical/fixtures/after/backslashes.html
1634
+ - test/mathematical/fixtures/after/compliance_arrows.html
1635
+ - test/mathematical/fixtures/after/compliance_colors.html
1636
+ - test/mathematical/fixtures/after/dollar_sign_inline.html
1627
1637
  - test/mathematical/fixtures/performance/big_file.text
1628
- - test/mathematical/fixtures/png/numeric_test_1.png
1629
- - test/mathematical/fixtures/png/numeric_test_2.png
1630
- - test/mathematical/fixtures/png/numeric_test_3.png
1631
- - test/mathematical/fixtures/png/pmatrix.png
1632
- - test/mathematical/fixtures_test.rb
1633
- - test/mathematical/maliciousness_test.rb
1634
1638
  - test/mathematical/mathjax_test.rb
1635
- - test/mathematical/mathml_test.rb
1639
+ - test/mathematical/corrections_test.rb
1640
+ - test/mathematical/maliciousness_test.rb
1641
+ - test/mathematical/fixtures_test.rb
1636
1642
  - test/mathematical/multiples_test.rb
1637
- - test/mathematical/performance_test.rb
1638
- - test/mathematical/png_test.rb
1639
- - test/test_helper.rb
1643
+ - test/mathematical/delimiters_test.rb