wirispluginengine 7.16.0.1424 → 7.17.0.1426
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 56a7f25aa76b8b0c23eb1ee5b7245c06b4766da0
|
4
|
+
data.tar.gz: c924a65d318996d009d35dfc5c11648e874d1e80
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f5100fe7f0a9fa6f0aee2d58ba76ef813017ee2fc52b9cd391a0a5d24d73d2a2a334cebd5f32024c6cccc095608ee336c942f3465108106eb5dd0c195578207a
|
7
|
+
data.tar.gz: 3366128f5b8662a54e097dc786f4e6000113ef0d949d11de40f2de31e12cb294b34a8c864d402c3159f6ca791aed2bc11b851cb717c44800e64bdf3d0d04f85c
|
@@ -1084,8 +1084,8 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1084
1084
|
data += "&metrics=true¢erbaseline=false&mml=" + StringTools.urlEncode(mml);
|
1085
1085
|
data += "&lang=" + this.lang;
|
1086
1086
|
if(this.zoom != 1) data += "&zoom=" + this.zoom;
|
1087
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1088
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1087
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber : 920, className : "com.wiris.js.JsPluginViewer", methodName : "callService"});
|
1088
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber : 922, className : "com.wiris.js.JsPluginViewer", methodName : "callService"});
|
1089
1089
|
con.open("POST",url,false);
|
1090
1090
|
con.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=utf-8");
|
1091
1091
|
con.send(data);
|
@@ -1097,8 +1097,8 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1097
1097
|
var url = (this.absoluteURL.length > 0?this.absoluteURL:this.baseURL + this.localpath) + "/service" + this.extension;
|
1098
1098
|
var data = "service=latex2mathml";
|
1099
1099
|
data += "&latex=" + StringTools.urlEncode(latex);
|
1100
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1101
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1100
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber : 854, className : "com.wiris.js.JsPluginViewer", methodName : "latexToMathml"});
|
1101
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber : 856, className : "com.wiris.js.JsPluginViewer", methodName : "latexToMathml"});
|
1102
1102
|
var onloadFunc = function(e) {
|
1103
1103
|
try {
|
1104
1104
|
var mathml = haxe.Json.parse(con.responseText).result.text;
|
@@ -1120,7 +1120,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1120
1120
|
e.target.wiris.callbackFunc(mathmlSpan);
|
1121
1121
|
_g.parseElement(mathmlSpan,asynchronously);
|
1122
1122
|
} catch( e1 ) {
|
1123
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("LatexToMathml call failed!",{ fileName : "JsPluginViewer.hx", lineNumber :
|
1123
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("LatexToMathml call failed!",{ fileName : "JsPluginViewer.hx", lineNumber : 882, className : "com.wiris.js.JsPluginViewer", methodName : "latexToMathml"});
|
1124
1124
|
}
|
1125
1125
|
};
|
1126
1126
|
con.open("POST",url,asynchronously);
|
@@ -1131,7 +1131,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1131
1131
|
con.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=utf-8");
|
1132
1132
|
con.onload = onloadFunc;
|
1133
1133
|
con.onerror = function(e) {
|
1134
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("LatexToMathml call failed!",{ fileName : "JsPluginViewer.hx", lineNumber :
|
1134
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("LatexToMathml call failed!",{ fileName : "JsPluginViewer.hx", lineNumber : 895, className : "com.wiris.js.JsPluginViewer", methodName : "latexToMathml"});
|
1135
1135
|
};
|
1136
1136
|
con.send(data);
|
1137
1137
|
}
|
@@ -1158,8 +1158,8 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1158
1158
|
url = (this.absoluteURL.length > 0?this.absoluteURL:this.baseURL + this.localpath) + "/showimage" + this.extension;
|
1159
1159
|
if(new com.wiris.js.JsBrowser().isIE()) data = "?formula=" + md5 + "&lang=" + this.lang + "&useragent=IE"; else data = "?formula=" + md5 + "&lang=" + this.lang;
|
1160
1160
|
data += "&version=" + com.wiris.js.JsPluginViewer.VERSION;
|
1161
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1162
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("GET:" + data,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1161
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber : 732, className : "com.wiris.js.JsPluginViewer", methodName : "callShowimage"});
|
1162
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("GET:" + data,{ fileName : "JsPluginViewer.hx", lineNumber : 734, className : "com.wiris.js.JsPluginViewer", methodName : "callShowimage"});
|
1163
1163
|
con.open("GET",url + data,asynchronously);
|
1164
1164
|
con.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=utf-8");
|
1165
1165
|
var onloadFunc = function(e) {
|
@@ -1179,7 +1179,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1179
1179
|
var scaledWitdh = result.width * scaleDpi | 0;
|
1180
1180
|
var scaledBaseLine = result.baseline * scaleDpi | 0;
|
1181
1181
|
if(result.height > 0) {
|
1182
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(_g.calculateAlignment(height,baseline),{ fileName : "JsPluginViewer.hx", lineNumber :
|
1182
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(_g.calculateAlignment(height,baseline),{ fileName : "JsPluginViewer.hx", lineNumber : 758, className : "com.wiris.js.JsPluginViewer", methodName : "callShowimage"});
|
1183
1183
|
e1.target.wiris.img.style.verticalAlign = "-" + _g.calculateAlignment(scaledHeight,scaledBaseLine) + "px";
|
1184
1184
|
e1.target.wiris.img.style.height = "" + scaledHeight + "px";
|
1185
1185
|
e1.target.wiris.img.style.width = "" + scaledWitdh + "px";
|
@@ -1223,7 +1223,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1223
1223
|
con.wiris.container = container;
|
1224
1224
|
con.onload = onloadFunc1;
|
1225
1225
|
con.onerror = function(e1) {
|
1226
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("ShowImage call failed!",{ fileName : "JsPluginViewer.hx", lineNumber :
|
1226
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("ShowImage call failed!",{ fileName : "JsPluginViewer.hx", lineNumber : 822, className : "com.wiris.js.JsPluginViewer", methodName : "callShowimage"});
|
1227
1227
|
};
|
1228
1228
|
con.send(data);
|
1229
1229
|
} else getResultFunc(e);
|
@@ -1237,7 +1237,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1237
1237
|
con.wiris.asynchronously = asynchronously;
|
1238
1238
|
con.onload = onloadFunc;
|
1239
1239
|
con.onerror = function(e) {
|
1240
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("ShowImage call failed!",{ fileName : "JsPluginViewer.hx", lineNumber :
|
1240
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("ShowImage call failed!",{ fileName : "JsPluginViewer.hx", lineNumber : 842, className : "com.wiris.js.JsPluginViewer", methodName : "callShowimage"});
|
1241
1241
|
};
|
1242
1242
|
con.send(null);
|
1243
1243
|
}
|
@@ -1254,8 +1254,8 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1254
1254
|
data = "metrics=true¢erbaseline=false&mml=" + StringTools.urlEncode(mml);
|
1255
1255
|
data += "&lang=" + this.lang;
|
1256
1256
|
if(this.zoom != 1) data += "&zoom=" + this.zoom;
|
1257
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1258
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1257
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Calling: " + url,{ fileName : "JsPluginViewer.hx", lineNumber : 661, className : "com.wiris.js.JsPluginViewer", methodName : "callCreateImage"});
|
1258
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("POST:" + data,{ fileName : "JsPluginViewer.hx", lineNumber : 663, className : "com.wiris.js.JsPluginViewer", methodName : "callCreateImage"});
|
1259
1259
|
con.open("POST",url,false);
|
1260
1260
|
con.setRequestHeader("Content-type","application/x-www-form-urlencoded; charset=utf-8");
|
1261
1261
|
con.send(data);
|
@@ -1264,7 +1264,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1264
1264
|
if(i >= 0) {
|
1265
1265
|
var scaleDpi = 1;
|
1266
1266
|
var h = this.queryToParams(HxOverrides.substr(s,i + 1,null));
|
1267
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(h.get("formula"),{ fileName : "JsPluginViewer.hx", lineNumber :
|
1267
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(h.get("formula"),{ fileName : "JsPluginViewer.hx", lineNumber : 673, className : "com.wiris.js.JsPluginViewer", methodName : "callCreateImage"});
|
1268
1268
|
if(h.exists("dpi")) scaleDpi = this.zoom * (Std.parseInt(h.get("dpi")) / 96);
|
1269
1269
|
baseline = Std.parseInt(h.get("cb")) / scaleDpi | 0;
|
1270
1270
|
height = Std.parseInt(h.get("ch")) / scaleDpi | 0;
|
@@ -1273,7 +1273,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1273
1273
|
}
|
1274
1274
|
img.src = con.responseText;
|
1275
1275
|
if(height > 0) {
|
1276
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(this.calculateAlignment(height,baseline),{ fileName : "JsPluginViewer.hx", lineNumber :
|
1276
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(this.calculateAlignment(height,baseline),{ fileName : "JsPluginViewer.hx", lineNumber : 684, className : "com.wiris.js.JsPluginViewer", methodName : "callCreateImage"});
|
1277
1277
|
img.style.verticalAlign = "-" + this.calculateAlignment(height,baseline) + "px";
|
1278
1278
|
img.style.height = "" + height + "px";
|
1279
1279
|
img.style.width = "" + width + "px";
|
@@ -1301,12 +1301,12 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1301
1301
|
} else return com.wiris.js.JsPluginViewer.TECH;
|
1302
1302
|
}
|
1303
1303
|
,processMathML: function(mml,container,asynchronously,callbackFunc) {
|
1304
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(mml,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1304
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(mml,{ fileName : "JsPluginViewer.hx", lineNumber : 606, className : "com.wiris.js.JsPluginViewer", methodName : "processMathML"});
|
1305
1305
|
var img = js.Lib.document.createElement("img");
|
1306
1306
|
if(this.performanceenabled == null) this.performanceenabled = this.isPerformanceEnabled();
|
1307
1307
|
if(this.mode == com.wiris.js.JsPluginViewer.USE_CREATE_IMAGE && this.performanceenabled) this.callShowimage(container,mml,img,asynchronously,callbackFunc); else if(this.mode == com.wiris.js.JsPluginViewer.USE_CREATE_IMAGE && !this.performanceenabled) this.callCreateImage(mml,img); else img.src = this.baseURL + this.localpath + "/showimage" + this.extension + "?mml=" + StringTools.urlEncode(mml);
|
1308
1308
|
container.appendChild(img);
|
1309
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(img.src,{ fileName : "JsPluginViewer.hx", lineNumber :
|
1309
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace(img.src,{ fileName : "JsPluginViewer.hx", lineNumber : 620, className : "com.wiris.js.JsPluginViewer", methodName : "processMathML"});
|
1310
1310
|
}
|
1311
1311
|
,getMathML_IE7: function(mathNode0) {
|
1312
1312
|
var mathml = "";
|
@@ -1360,7 +1360,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1360
1360
|
var mathml = null;
|
1361
1361
|
var browser = new com.wiris.js.JsBrowser();
|
1362
1362
|
if(browser.getBrowser() == "Explorer" && (browser.getVersion() == "6" || browser.getVersion() == "7") && navigator.appVersion.indexOf("Trident") == -1) {
|
1363
|
-
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Is ie7",{ fileName : "JsPluginViewer.hx", lineNumber :
|
1363
|
+
if(com.wiris.js.JsPluginViewer.DEBUG) haxe.Log.trace("Is ie7",{ fileName : "JsPluginViewer.hx", lineNumber : 475, className : "com.wiris.js.JsPluginViewer", methodName : "replaceNodes"});
|
1364
1364
|
mathml = this.getMathML_IE7(mathNode);
|
1365
1365
|
}
|
1366
1366
|
var container = js.Lib.document.createElement("span");
|
@@ -1526,11 +1526,12 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1526
1526
|
}
|
1527
1527
|
,getMathMLPositionsAtElementAndChildren: function(element,mathmlPositions) {
|
1528
1528
|
this.getMathMLPositionsAtNode(element,mathmlPositions);
|
1529
|
-
|
1530
|
-
|
1529
|
+
var childNodes = Array.from(element.childNodes);
|
1530
|
+
if(childNodes.length > 0) {
|
1531
|
+
var _g1 = 0, _g = childNodes.length;
|
1531
1532
|
while(_g1 < _g) {
|
1532
1533
|
var i = _g1++;
|
1533
|
-
var child =
|
1534
|
+
var child = childNodes[i];
|
1534
1535
|
this.getMathMLPositionsAtElementAndChildren(child,mathmlPositions);
|
1535
1536
|
}
|
1536
1537
|
}
|
@@ -1538,7 +1539,7 @@ com.wiris.js.JsPluginViewer.prototype = {
|
|
1538
1539
|
,parseSafeMathMLElement: function(element,asynchronously,callbackFunc) {
|
1539
1540
|
if(!this.ready) throw "Document is not loaded.";
|
1540
1541
|
var mathmlPositions = [];
|
1541
|
-
this.getMathMLPositionsAtElementAndChildren(
|
1542
|
+
this.getMathMLPositionsAtElementAndChildren(element,mathmlPositions);
|
1542
1543
|
var _g1 = 0, _g = mathmlPositions.length;
|
1543
1544
|
while(_g1 < _g) {
|
1544
1545
|
var i = _g1++;
|
@@ -2139,6 +2140,18 @@ com.wiris.system.JsDOMUtils.getMousePositionImpl = function(target,e,elementScro
|
|
2139
2140
|
position[1] = e.clientY - com.wiris.system.JsDOMUtils.getTop(target) - border + elementScroll[1];
|
2140
2141
|
return position;
|
2141
2142
|
}
|
2143
|
+
com.wiris.system.JsDOMUtils.getMousePagePosition = function(target,e) {
|
2144
|
+
var pagePosition = new Array();
|
2145
|
+
pagePosition[0] = e.pageX;
|
2146
|
+
pagePosition[1] = e.pageY;
|
2147
|
+
return pagePosition;
|
2148
|
+
}
|
2149
|
+
com.wiris.system.JsDOMUtils.getScrollPosition = function(target,e) {
|
2150
|
+
var elementScroll = new Array();
|
2151
|
+
elementScroll[0] = target.scrollLeft;
|
2152
|
+
elementScroll[1] = target.scrollTop;
|
2153
|
+
return elementScroll;
|
2154
|
+
}
|
2142
2155
|
com.wiris.system.JsDOMUtils.inFixedParent = function(element) {
|
2143
2156
|
while(element != null) {
|
2144
2157
|
if(com.wiris.system.JsDOMUtils.getComputedStyleProperty(element,"position") == "fixed") return true;
|
@@ -3894,7 +3907,7 @@ js.XMLHttpRequest = window.XMLHttpRequest?XMLHttpRequest:window.ActiveXObject?fu
|
|
3894
3907
|
com.wiris.js.JsPluginViewer.USE_CREATE_IMAGE = 1;
|
3895
3908
|
com.wiris.js.JsPluginViewer.DEBUG = false;
|
3896
3909
|
com.wiris.js.JsPluginViewer.TECH = "ruby";
|
3897
|
-
com.wiris.js.JsPluginViewer.VERSION = "7.
|
3910
|
+
com.wiris.js.JsPluginViewer.VERSION = "7.17.0.1426";
|
3898
3911
|
com.wiris.system.JsDOMUtils.TOUCHHOLD_MOVE_MARGIN = 10;
|
3899
3912
|
com.wiris.system.JsDOMUtils.browser = new com.wiris.system.JsBrowser();
|
3900
3913
|
com.wiris.system.JsDOMUtils.initialized = false;
|
@@ -16,12 +16,17 @@ include Wiris
|
|
16
16
|
ROOT_NO_TAIL_VERTICAL = 61759
|
17
17
|
ROOT_LEFT_TAIL = 61760
|
18
18
|
ROOT_VERTICAL_LINE = 61761
|
19
|
+
HORIZONTAL_TAB = 9
|
19
20
|
LINE_FEED = 10
|
21
|
+
CARRIAGE_RETURN = 13
|
22
|
+
SPACE = 32
|
23
|
+
NUMBER_SIGN = 35
|
20
24
|
ROUND_BRACKET_LEFT = 40
|
21
25
|
ROUND_BRACKET_RIGHT = 41
|
22
26
|
COMMA = 44
|
23
27
|
FULL_STOP = 46
|
24
28
|
SQUARE_BRACKET_LEFT = 91
|
29
|
+
BACKSLASH = 92
|
25
30
|
SQUARE_BRACKET_RIGHT = 93
|
26
31
|
CIRCUMFLEX_ACCENT = 94
|
27
32
|
LOW_LINE = 95
|
data/resources/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
7.
|
1
|
+
7.17.0.1426
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: wirispluginengine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.
|
4
|
+
version: 7.17.0.1426
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
- Wiris
|
7
|
+
- Wiris Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-09-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|
@@ -24,23 +24,10 @@ dependencies:
|
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
26
|
version: '0'
|
27
|
-
|
28
|
-
|
29
|
-
requirement: !ruby/object:Gem::Requirement
|
30
|
-
requirements:
|
31
|
-
- - ">="
|
32
|
-
- !ruby/object:Gem::Version
|
33
|
-
version: '0'
|
34
|
-
type: :development
|
35
|
-
prerelease: false
|
36
|
-
version_requirements: !ruby/object:Gem::Requirement
|
37
|
-
requirements:
|
38
|
-
- - ">="
|
39
|
-
- !ruby/object:Gem::Version
|
40
|
-
version: '0'
|
41
|
-
description: Description of Wirispluginengine.
|
27
|
+
description: Ruby on Rails services for MathType Web integrations with TinyMCE, CKEditor
|
28
|
+
or Froala, among others.
|
42
29
|
email:
|
43
|
-
-
|
30
|
+
- support@wiris.com
|
44
31
|
executables: []
|
45
32
|
extensions: []
|
46
33
|
extra_rdoc_files: []
|
@@ -191,7 +178,7 @@ files:
|
|
191
178
|
- resources/default-configuration.ini
|
192
179
|
- resources/tech.txt
|
193
180
|
- resources/wirisplugin.css
|
194
|
-
homepage:
|
181
|
+
homepage: https://www.wiris.com
|
195
182
|
licenses:
|
196
183
|
- MIT
|
197
184
|
metadata: {}
|
@@ -214,5 +201,6 @@ rubyforge_project:
|
|
214
201
|
rubygems_version: 2.4.5.2
|
215
202
|
signing_key:
|
216
203
|
specification_version: 4
|
217
|
-
summary:
|
204
|
+
summary: Ruby on Rails services for MathType Web integrations with TinyMCE, CKEditor
|
205
|
+
or Froala, among others.
|
218
206
|
test_files: []
|