mathjax-rails-3 3.2.2.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.
Files changed (134) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +18 -0
  3. data/.travis.yml +9 -0
  4. data/CHANGELOG.md +14 -0
  5. data/Gemfile +4 -0
  6. data/LICENSE.txt +22 -0
  7. data/README.md +148 -0
  8. data/Rakefile +6 -0
  9. data/lib/mathjax/rails/controllers.rb +23 -0
  10. data/lib/mathjax/rails/helpers.rb +11 -0
  11. data/lib/mathjax/rails/mime_types.rb +3 -0
  12. data/lib/mathjax/rails/routes.rb +10 -0
  13. data/lib/mathjax/rails/version.rb +7 -0
  14. data/lib/mathjax/rails.rb +5 -0
  15. data/lib/mathjax-rails-3.rb +1 -0
  16. data/mathjax-rails-3.gemspec +23 -0
  17. data/vendor/mathjax/.github/FUNDING.yml +2 -0
  18. data/vendor/mathjax/.github/ISSUE_TEMPLATE/bug_report.md +54 -0
  19. data/vendor/mathjax/.github/ISSUE_TEMPLATE/feature_request.md +20 -0
  20. data/vendor/mathjax/.gitignore +2 -0
  21. data/vendor/mathjax/.travis.yml +17 -0
  22. data/vendor/mathjax/CONTRIBUTING.md +314 -0
  23. data/vendor/mathjax/LICENSE +202 -0
  24. data/vendor/mathjax/README.md +237 -0
  25. data/vendor/mathjax/bower.json +11 -0
  26. data/vendor/mathjax/composer.json +14 -0
  27. data/vendor/mathjax/es5/a11y/assistive-mml.js +1 -0
  28. data/vendor/mathjax/es5/a11y/complexity.js +1 -0
  29. data/vendor/mathjax/es5/a11y/explorer.js +1 -0
  30. data/vendor/mathjax/es5/a11y/semantic-enrich.js +1 -0
  31. data/vendor/mathjax/es5/a11y/sre.js +1 -0
  32. data/vendor/mathjax/es5/adaptors/liteDOM.js +1 -0
  33. data/vendor/mathjax/es5/core.js +1 -0
  34. data/vendor/mathjax/es5/input/asciimath.js +1 -0
  35. data/vendor/mathjax/es5/input/mml/entities.js +1 -0
  36. data/vendor/mathjax/es5/input/mml/extensions/mml3.js +1 -0
  37. data/vendor/mathjax/es5/input/mml/extensions/mml3.sef.json +1 -0
  38. data/vendor/mathjax/es5/input/mml.js +1 -0
  39. data/vendor/mathjax/es5/input/tex/extensions/action.js +1 -0
  40. data/vendor/mathjax/es5/input/tex/extensions/all-packages.js +34 -0
  41. data/vendor/mathjax/es5/input/tex/extensions/ams.js +1 -0
  42. data/vendor/mathjax/es5/input/tex/extensions/amscd.js +1 -0
  43. data/vendor/mathjax/es5/input/tex/extensions/autoload.js +1 -0
  44. data/vendor/mathjax/es5/input/tex/extensions/bbox.js +1 -0
  45. data/vendor/mathjax/es5/input/tex/extensions/boldsymbol.js +1 -0
  46. data/vendor/mathjax/es5/input/tex/extensions/braket.js +1 -0
  47. data/vendor/mathjax/es5/input/tex/extensions/bussproofs.js +1 -0
  48. data/vendor/mathjax/es5/input/tex/extensions/cancel.js +1 -0
  49. data/vendor/mathjax/es5/input/tex/extensions/cases.js +1 -0
  50. data/vendor/mathjax/es5/input/tex/extensions/centernot.js +1 -0
  51. data/vendor/mathjax/es5/input/tex/extensions/color.js +1 -0
  52. data/vendor/mathjax/es5/input/tex/extensions/colortbl.js +1 -0
  53. data/vendor/mathjax/es5/input/tex/extensions/colorv2.js +1 -0
  54. data/vendor/mathjax/es5/input/tex/extensions/configmacros.js +1 -0
  55. data/vendor/mathjax/es5/input/tex/extensions/empheq.js +1 -0
  56. data/vendor/mathjax/es5/input/tex/extensions/enclose.js +1 -0
  57. data/vendor/mathjax/es5/input/tex/extensions/extpfeil.js +1 -0
  58. data/vendor/mathjax/es5/input/tex/extensions/gensymb.js +1 -0
  59. data/vendor/mathjax/es5/input/tex/extensions/html.js +1 -0
  60. data/vendor/mathjax/es5/input/tex/extensions/mathtools.js +1 -0
  61. data/vendor/mathjax/es5/input/tex/extensions/mhchem.js +34 -0
  62. data/vendor/mathjax/es5/input/tex/extensions/newcommand.js +1 -0
  63. data/vendor/mathjax/es5/input/tex/extensions/noerrors.js +1 -0
  64. data/vendor/mathjax/es5/input/tex/extensions/noundefined.js +1 -0
  65. data/vendor/mathjax/es5/input/tex/extensions/physics.js +1 -0
  66. data/vendor/mathjax/es5/input/tex/extensions/require.js +1 -0
  67. data/vendor/mathjax/es5/input/tex/extensions/setoptions.js +1 -0
  68. data/vendor/mathjax/es5/input/tex/extensions/tagformat.js +1 -0
  69. data/vendor/mathjax/es5/input/tex/extensions/textcomp.js +1 -0
  70. data/vendor/mathjax/es5/input/tex/extensions/textmacros.js +1 -0
  71. data/vendor/mathjax/es5/input/tex/extensions/unicode.js +1 -0
  72. data/vendor/mathjax/es5/input/tex/extensions/upgreek.js +1 -0
  73. data/vendor/mathjax/es5/input/tex/extensions/verb.js +1 -0
  74. data/vendor/mathjax/es5/input/tex-base.js +1 -0
  75. data/vendor/mathjax/es5/input/tex-full.js +34 -0
  76. data/vendor/mathjax/es5/input/tex.js +1 -0
  77. data/vendor/mathjax/es5/latest.js +1 -0
  78. data/vendor/mathjax/es5/loader.js +1 -0
  79. data/vendor/mathjax/es5/mml-chtml.js +1 -0
  80. data/vendor/mathjax/es5/mml-svg.js +1 -0
  81. data/vendor/mathjax/es5/node-main.js +1 -0
  82. data/vendor/mathjax/es5/output/chtml/fonts/tex.js +1 -0
  83. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_AMS-Regular.woff +0 -0
  84. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Bold.woff +0 -0
  85. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Calligraphic-Regular.woff +0 -0
  86. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Bold.woff +0 -0
  87. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Fraktur-Regular.woff +0 -0
  88. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Bold.woff +0 -0
  89. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Italic.woff +0 -0
  90. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Main-Regular.woff +0 -0
  91. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-BoldItalic.woff +0 -0
  92. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Italic.woff +0 -0
  93. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Math-Regular.woff +0 -0
  94. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Bold.woff +0 -0
  95. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Italic.woff +0 -0
  96. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_SansSerif-Regular.woff +0 -0
  97. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Script-Regular.woff +0 -0
  98. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size1-Regular.woff +0 -0
  99. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size2-Regular.woff +0 -0
  100. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size3-Regular.woff +0 -0
  101. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Size4-Regular.woff +0 -0
  102. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Typewriter-Regular.woff +0 -0
  103. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Bold.woff +0 -0
  104. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Vector-Regular.woff +0 -0
  105. data/vendor/mathjax/es5/output/chtml/fonts/woff-v2/MathJax_Zero.woff +0 -0
  106. data/vendor/mathjax/es5/output/chtml.js +1 -0
  107. data/vendor/mathjax/es5/output/svg/fonts/tex.js +1 -0
  108. data/vendor/mathjax/es5/output/svg.js +1 -0
  109. data/vendor/mathjax/es5/sre/mathmaps/base.json +29 -0
  110. data/vendor/mathjax/es5/sre/mathmaps/ca.json +140 -0
  111. data/vendor/mathjax/es5/sre/mathmaps/da.json +140 -0
  112. data/vendor/mathjax/es5/sre/mathmaps/de.json +146 -0
  113. data/vendor/mathjax/es5/sre/mathmaps/en.json +158 -0
  114. data/vendor/mathjax/es5/sre/mathmaps/es.json +140 -0
  115. data/vendor/mathjax/es5/sre/mathmaps/fr.json +146 -0
  116. data/vendor/mathjax/es5/sre/mathmaps/hi.json +146 -0
  117. data/vendor/mathjax/es5/sre/mathmaps/it.json +146 -0
  118. data/vendor/mathjax/es5/sre/mathmaps/nb.json +146 -0
  119. data/vendor/mathjax/es5/sre/mathmaps/nemeth.json +125 -0
  120. data/vendor/mathjax/es5/sre/mathmaps/nn.json +146 -0
  121. data/vendor/mathjax/es5/sre/mathmaps/sv.json +146 -0
  122. data/vendor/mathjax/es5/startup.js +1 -0
  123. data/vendor/mathjax/es5/tex-chtml-full-speech.js +34 -0
  124. data/vendor/mathjax/es5/tex-chtml-full.js +34 -0
  125. data/vendor/mathjax/es5/tex-chtml.js +1 -0
  126. data/vendor/mathjax/es5/tex-mml-chtml.js +1 -0
  127. data/vendor/mathjax/es5/tex-mml-svg.js +1 -0
  128. data/vendor/mathjax/es5/tex-svg-full.js +34 -0
  129. data/vendor/mathjax/es5/tex-svg.js +1 -0
  130. data/vendor/mathjax/es5/ui/lazy.js +1 -0
  131. data/vendor/mathjax/es5/ui/menu.js +1 -0
  132. data/vendor/mathjax/es5/ui/safe.js +1 -0
  133. data/vendor/mathjax/package.json +59 -0
  134. metadata +193 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the gem file manually.