jquery_cheats 2.0.1 → 2.1.0

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 (66) hide show
  1. data/README.md +19 -2
  2. data/app/assets/javascripts/jqueryCheats.js +36 -1
  3. data/jquery_cheats.gemspec +2 -2
  4. data/lib/jquery_cheats.rb +4 -0
  5. data/vendor/assets/excanvas.js +1438 -0
  6. data/vendor/assets/jquery.jqplot.css +259 -0
  7. data/vendor/assets/jquery.jqplot.js +10901 -0
  8. data/vendor/assets/plugins/jqplot.BezierCurveRenderer.js +312 -0
  9. data/vendor/assets/plugins/jqplot.BezierCurveRenderer.min.js +57 -0
  10. data/vendor/assets/plugins/jqplot.barRenderer.js +747 -0
  11. data/vendor/assets/plugins/jqplot.barRenderer.min.js +57 -0
  12. data/vendor/assets/plugins/jqplot.blockRenderer.js +234 -0
  13. data/vendor/assets/plugins/jqplot.blockRenderer.min.js +57 -0
  14. data/vendor/assets/plugins/jqplot.bubbleRenderer.js +754 -0
  15. data/vendor/assets/plugins/jqplot.bubbleRenderer.min.js +57 -0
  16. data/vendor/assets/plugins/jqplot.canvasAxisLabelRenderer.js +202 -0
  17. data/vendor/assets/plugins/jqplot.canvasAxisLabelRenderer.min.js +57 -0
  18. data/vendor/assets/plugins/jqplot.canvasAxisTickRenderer.js +242 -0
  19. data/vendor/assets/plugins/jqplot.canvasAxisTickRenderer.min.js +57 -0
  20. data/vendor/assets/plugins/jqplot.canvasOverlay.js +864 -0
  21. data/vendor/assets/plugins/jqplot.canvasOverlay.min.js +57 -0
  22. data/vendor/assets/plugins/jqplot.canvasTextRenderer.js +448 -0
  23. data/vendor/assets/plugins/jqplot.canvasTextRenderer.min.js +57 -0
  24. data/vendor/assets/plugins/jqplot.categoryAxisRenderer.js +636 -0
  25. data/vendor/assets/plugins/jqplot.categoryAxisRenderer.min.js +57 -0
  26. data/vendor/assets/plugins/jqplot.ciParser.js +115 -0
  27. data/vendor/assets/plugins/jqplot.ciParser.min.js +57 -0
  28. data/vendor/assets/plugins/jqplot.cursor.js +1093 -0
  29. data/vendor/assets/plugins/jqplot.cursor.min.js +57 -0
  30. data/vendor/assets/plugins/jqplot.dateAxisRenderer.js +702 -0
  31. data/vendor/assets/plugins/jqplot.dateAxisRenderer.min.js +57 -0
  32. data/vendor/assets/plugins/jqplot.donutRenderer.js +800 -0
  33. data/vendor/assets/plugins/jqplot.donutRenderer.min.js +57 -0
  34. data/vendor/assets/plugins/jqplot.dragable.js +224 -0
  35. data/vendor/assets/plugins/jqplot.dragable.min.js +57 -0
  36. data/vendor/assets/plugins/jqplot.enhancedLegendRenderer.js +241 -0
  37. data/vendor/assets/plugins/jqplot.enhancedLegendRenderer.min.js +57 -0
  38. data/vendor/assets/plugins/jqplot.funnelRenderer.js +938 -0
  39. data/vendor/assets/plugins/jqplot.funnelRenderer.min.js +57 -0
  40. data/vendor/assets/plugins/jqplot.highlighter.js +454 -0
  41. data/vendor/assets/plugins/jqplot.highlighter.min.js +57 -0
  42. data/vendor/assets/plugins/jqplot.json2.js +475 -0
  43. data/vendor/assets/plugins/jqplot.json2.min.js +57 -0
  44. data/vendor/assets/plugins/jqplot.logAxisRenderer.js +528 -0
  45. data/vendor/assets/plugins/jqplot.logAxisRenderer.min.js +57 -0
  46. data/vendor/assets/plugins/jqplot.mekkoAxisRenderer.js +610 -0
  47. data/vendor/assets/plugins/jqplot.mekkoAxisRenderer.min.js +57 -0
  48. data/vendor/assets/plugins/jqplot.mekkoRenderer.js +436 -0
  49. data/vendor/assets/plugins/jqplot.mekkoRenderer.min.js +57 -0
  50. data/vendor/assets/plugins/jqplot.meterGaugeRenderer.js +1029 -0
  51. data/vendor/assets/plugins/jqplot.meterGaugeRenderer.min.js +57 -0
  52. data/vendor/assets/plugins/jqplot.ohlcRenderer.js +372 -0
  53. data/vendor/assets/plugins/jqplot.ohlcRenderer.min.js +57 -0
  54. data/vendor/assets/plugins/jqplot.pieRenderer.js +899 -0
  55. data/vendor/assets/plugins/jqplot.pieRenderer.min.js +57 -0
  56. data/vendor/assets/plugins/jqplot.pointLabels.js +362 -0
  57. data/vendor/assets/plugins/jqplot.pointLabels.min.js +57 -0
  58. data/vendor/assets/plugins/jqplot.pyramidAxisRenderer.js +730 -0
  59. data/vendor/assets/plugins/jqplot.pyramidAxisRenderer.min.js +57 -0
  60. data/vendor/assets/plugins/jqplot.pyramidGridRenderer.js +423 -0
  61. data/vendor/assets/plugins/jqplot.pyramidGridRenderer.min.js +57 -0
  62. data/vendor/assets/plugins/jqplot.pyramidRenderer.js +490 -0
  63. data/vendor/assets/plugins/jqplot.pyramidRenderer.min.js +57 -0
  64. data/vendor/assets/plugins/jqplot.trendline.js +222 -0
  65. data/vendor/assets/plugins/jqplot.trendline.min.js +57 -0
  66. metadata +64 -3
@@ -0,0 +1,222 @@
1
+ /**
2
+ * jqPlot
3
+ * Pure JavaScript plotting plugin using jQuery
4
+ *
5
+ * Version: 1.0.0b2_r1012
6
+ *
7
+ * Copyright (c) 2009-2011 Chris Leonello
8
+ * jqPlot is currently available for use in all personal or commercial projects
9
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
10
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
11
+ * choose the license that best suits your project and use it accordingly.
12
+ *
13
+ * Although not required, the author would appreciate an email letting him
14
+ * know of any substantial use of jqPlot. You can reach the author at:
15
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
16
+ *
17
+ * If you are feeling kind and generous, consider supporting the project by
18
+ * making a donation at: http://www.jqplot.com/donate.php .
19
+ *
20
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
21
+ *
22
+ * version 2007.04.27
23
+ * author Ash Searle
24
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
25
+ * http://hexmen.com/js/sprintf.js
26
+ * The author (Ash Searle) has placed this code in the public domain:
27
+ * "This code is unrestricted: you are free to use it however you like."
28
+ *
29
+ */
30
+ (function($) {
31
+
32
+ /**
33
+ * Class: $.jqplot.Trendline
34
+ * Plugin which will automatically compute and draw trendlines for plotted data.
35
+ */
36
+ $.jqplot.Trendline = function() {
37
+ // Group: Properties
38
+
39
+ // prop: show
40
+ // Wether or not to show the trend line.
41
+ this.show = $.jqplot.config.enablePlugins;
42
+ // prop: color
43
+ // CSS color spec for the trend line.
44
+ // By default this wil be the same color as the primary line.
45
+ this.color = '#666666';
46
+ // prop: renderer
47
+ // Renderer to use to draw the trend line.
48
+ // The data series that is plotted may not be rendered as a line.
49
+ // Therefore, we use our own line renderer here to draw a trend line.
50
+ this.renderer = new $.jqplot.LineRenderer();
51
+ // prop: rendererOptions
52
+ // Options to pass to the line renderer.
53
+ // By default, markers are not shown on trend lines.
54
+ this.rendererOptions = {marker:{show:false}};
55
+ // prop: label
56
+ // Label for the trend line to use in the legend.
57
+ this.label = '';
58
+ // prop: type
59
+ // Either 'exponential', 'exp', or 'linear'.
60
+ this.type = 'linear';
61
+ // prop: shadow
62
+ // true or false, wether or not to show the shadow.
63
+ this.shadow = true;
64
+ // prop: markerRenderer
65
+ // Renderer to use to draw markers on the line.
66
+ // I think this is wrong.
67
+ this.markerRenderer = {show:false};
68
+ // prop: lineWidth
69
+ // Width of the trend line.
70
+ this.lineWidth = 1.5;
71
+ // prop: shadowAngle
72
+ // Angle of the shadow on the trend line.
73
+ this.shadowAngle = 45;
74
+ // prop: shadowOffset
75
+ // pixel offset for each stroke of the shadow.
76
+ this.shadowOffset = 1.0;
77
+ // prop: shadowAlpha
78
+ // Alpha transparency of the shadow.
79
+ this.shadowAlpha = 0.07;
80
+ // prop: shadowDepth
81
+ // number of strokes to make of the shadow.
82
+ this.shadowDepth = 3;
83
+ this.isTrendline = true;
84
+
85
+ };
86
+
87
+ $.jqplot.postSeriesInitHooks.push(parseTrendLineOptions);
88
+ $.jqplot.postDrawSeriesHooks.push(drawTrendline);
89
+ $.jqplot.addLegendRowHooks.push(addTrendlineLegend);
90
+
91
+ // called witin scope of the legend object
92
+ // current series passed in
93
+ // must return null or an object {label:label, color:color}
94
+ function addTrendlineLegend(series) {
95
+ var ret = null;
96
+ if (series.trendline && series.trendline.show) {
97
+ var lt = series.trendline.label.toString();
98
+ if (lt) {
99
+ ret = {label:lt, color:series.trendline.color};
100
+ }
101
+ }
102
+ return ret;
103
+ }
104
+
105
+ // called within scope of a series
106
+ function parseTrendLineOptions (target, data, seriesDefaults, options, plot) {
107
+ if (this._type && (this._type === 'line' || this._type == 'bar')) {
108
+ this.trendline = new $.jqplot.Trendline();
109
+ options = options || {};
110
+ $.extend(true, this.trendline, {color:this.color}, seriesDefaults.trendline, options.trendline);
111
+ this.trendline.renderer.init.call(this.trendline, null);
112
+ }
113
+ }
114
+
115
+ // called within scope of series object
116
+ function drawTrendline(sctx, options) {
117
+ // if we have options, merge trendline options in with precedence
118
+ options = $.extend(true, {}, this.trendline, options);
119
+
120
+ if (this.trendline && options.show) {
121
+ var fit;
122
+ // this.renderer.setGridData.call(this);
123
+ var data = options.data || this.data;
124
+ fit = fitData(data, this.trendline.type);
125
+ var gridData = options.gridData || this.renderer.makeGridData.call(this, fit.data);
126
+ this.trendline.renderer.draw.call(this.trendline, sctx, gridData, {showLine:true, shadow:this.trendline.shadow});
127
+ }
128
+ }
129
+
130
+ function regression(x, y, typ) {
131
+ var type = (typ == null) ? 'linear' : typ;
132
+ var N = x.length;
133
+ var slope;
134
+ var intercept;
135
+ var SX = 0;
136
+ var SY = 0;
137
+ var SXX = 0;
138
+ var SXY = 0;
139
+ var SYY = 0;
140
+ var Y = [];
141
+ var X = [];
142
+
143
+ if (type == 'linear') {
144
+ X = x;
145
+ Y = y;
146
+ }
147
+ else if (type == 'exp' || type == 'exponential') {
148
+ for ( var i=0; i<y.length; i++) {
149
+ // ignore points <= 0, log undefined.
150
+ if (y[i] <= 0) {
151
+ N--;
152
+ }
153
+ else {
154
+ X.push(x[i]);
155
+ Y.push(Math.log(y[i]));
156
+ }
157
+ }
158
+ }
159
+
160
+ for ( var i = 0; i < N; i++) {
161
+ SX = SX + X[i];
162
+ SY = SY + Y[i];
163
+ SXY = SXY + X[i]* Y[i];
164
+ SXX = SXX + X[i]* X[i];
165
+ SYY = SYY + Y[i]* Y[i];
166
+ }
167
+
168
+ slope = (N*SXY - SX*SY)/(N*SXX - SX*SX);
169
+ intercept = (SY - slope*SX)/N;
170
+
171
+ return [slope, intercept];
172
+ }
173
+
174
+ function linearRegression(X,Y) {
175
+ var ret;
176
+ ret = regression(X,Y,'linear');
177
+ return [ret[0],ret[1]];
178
+ }
179
+
180
+ function expRegression(X,Y) {
181
+ var ret;
182
+ var x = X;
183
+ var y = Y;
184
+ ret = regression(x, y,'exp');
185
+ var base = Math.exp(ret[0]);
186
+ var coeff = Math.exp(ret[1]);
187
+ return [base, coeff];
188
+ }
189
+
190
+ function fitData(data, typ) {
191
+ var type = (typ == null) ? 'linear' : typ;
192
+ var ret;
193
+ var res;
194
+ var x = [];
195
+ var y = [];
196
+ var ypred = [];
197
+
198
+ for (i=0; i<data.length; i++){
199
+ if (data[i] != null && data[i][0] != null && data[i][1] != null) {
200
+ x.push(data[i][0]);
201
+ y.push(data[i][1]);
202
+ }
203
+ }
204
+
205
+ if (type == 'linear') {
206
+ ret = linearRegression(x,y);
207
+ for ( var i=0; i<x.length; i++){
208
+ res = ret[0]*x[i] + ret[1];
209
+ ypred.push([x[i], res]);
210
+ }
211
+ }
212
+ else if (type == 'exp' || type == 'exponential') {
213
+ ret = expRegression(x,y);
214
+ for ( var i=0; i<x.length; i++){
215
+ res = ret[1]*Math.pow(ret[0],x[i]);
216
+ ypred.push([x[i], res]);
217
+ }
218
+ }
219
+ return {data: ypred, slope: ret[0], intercept: ret[1]};
220
+ }
221
+
222
+ })(jQuery);
@@ -0,0 +1,57 @@
1
+ /**
2
+ * jqPlot
3
+ * Pure JavaScript plotting plugin using jQuery
4
+ *
5
+ * Version: 1.0.0b2_r1012
6
+ *
7
+ * Copyright (c) 2009-2011 Chris Leonello
8
+ * jqPlot is currently available for use in all personal or commercial projects
9
+ * under both the MIT (http://www.opensource.org/licenses/mit-license.php) and GPL
10
+ * version 2.0 (http://www.gnu.org/licenses/gpl-2.0.html) licenses. This means that you can
11
+ * choose the license that best suits your project and use it accordingly.
12
+ *
13
+ * Although not required, the author would appreciate an email letting him
14
+ * know of any substantial use of jqPlot. You can reach the author at:
15
+ * chris at jqplot dot com or see http://www.jqplot.com/info.php .
16
+ *
17
+ * If you are feeling kind and generous, consider supporting the project by
18
+ * making a donation at: http://www.jqplot.com/donate.php .
19
+ *
20
+ * sprintf functions contained in jqplot.sprintf.js by Ash Searle:
21
+ *
22
+ * version 2007.04.27
23
+ * author Ash Searle
24
+ * http://hexmen.com/blog/2007/03/printf-sprintf/
25
+ * http://hexmen.com/js/sprintf.js
26
+ * The author (Ash Searle) has placed this code in the public domain:
27
+ * "This code is unrestricted: you are free to use it however you like."
28
+ *
29
+ * included jsDate library by Chris Leonello:
30
+ *
31
+ * Copyright (c) 2010-2011 Chris Leonello
32
+ *
33
+ * jsDate is currently available for use in all personal or commercial projects
34
+ * under both the MIT and GPL version 2.0 licenses. This means that you can
35
+ * choose the license that best suits your project and use it accordingly.
36
+ *
37
+ * jsDate borrows many concepts and ideas from the Date Instance
38
+ * Methods by Ken Snyder along with some parts of Ken's actual code.
39
+ *
40
+ * Ken's origianl Date Instance Methods and copyright notice:
41
+ *
42
+ * Ken Snyder (ken d snyder at gmail dot com)
43
+ * 2008-09-10
44
+ * version 2.0.2 (http://kendsnyder.com/sandbox/date/)
45
+ * Creative Commons Attribution License 3.0 (http://creativecommons.org/licenses/by/3.0/)
46
+ *
47
+ * jqplotToImage function based on Larry Siden's export-jqplot-to-png.js.
48
+ * Larry has generously given permission to adapt his code for inclusion
49
+ * into jqPlot.
50
+ *
51
+ * Larry's original code can be found here:
52
+ *
53
+ * https://github.com/lsiden/export-jqplot-to-png
54
+ *
55
+ *
56
+ */
57
+ (function(f){f.jqplot.Trendline=function(){this.show=f.jqplot.config.enablePlugins;this.color="#666666";this.renderer=new f.jqplot.LineRenderer();this.rendererOptions={marker:{show:false}};this.label="";this.type="linear";this.shadow=true;this.markerRenderer={show:false};this.lineWidth=1.5;this.shadowAngle=45;this.shadowOffset=1;this.shadowAlpha=0.07;this.shadowDepth=3;this.isTrendline=true};f.jqplot.postSeriesInitHooks.push(e);f.jqplot.postDrawSeriesHooks.push(g);f.jqplot.addLegendRowHooks.push(a);function a(k){var j=null;if(k.trendline&&k.trendline.show){var i=k.trendline.label.toString();if(i){j={label:i,color:k.trendline.color}}}return j}function e(m,k,j,i,l){if(this._type&&(this._type==="line"||this._type=="bar")){this.trendline=new f.jqplot.Trendline();i=i||{};f.extend(true,this.trendline,{color:this.color},j.trendline,i.trendline);this.trendline.renderer.init.call(this.trendline,null)}}function g(m,i){i=f.extend(true,{},this.trendline,i);if(this.trendline&&i.show){var k;var l=i.data||this.data;k=c(l,this.trendline.type);var j=i.gridData||this.renderer.makeGridData.call(this,k.data);this.trendline.renderer.draw.call(this.trendline,m,j,{showLine:true,shadow:this.trendline.shadow})}}function b(w,v,n){var u=(n==null)?"linear":n;var s=w.length;var t;var z;var o=0;var m=0;var r=0;var q=0;var l=0;var j=[];var k=[];if(u=="linear"){k=w;j=v}else{if(u=="exp"||u=="exponential"){for(var p=0;p<v.length;p++){if(v[p]<=0){s--}else{k.push(w[p]);j.push(Math.log(v[p]))}}}}for(var p=0;p<s;p++){o=o+k[p];m=m+j[p];q=q+k[p]*j[p];r=r+k[p]*k[p];l=l+j[p]*j[p]}t=(s*q-o*m)/(s*r-o*o);z=(m-t*o)/s;return[t,z]}function h(k,j){var i;i=b(k,j,"linear");return[i[0],i[1]]}function d(o,m){var k;var i=o;var n=m;k=b(i,n,"exp");var l=Math.exp(k[0]);var j=Math.exp(k[1]);return[l,j]}function c(l,j){var p=(j==null)?"linear":j;var n;var o;var r=[];var q=[];var m=[];for(k=0;k<l.length;k++){if(l[k]!=null&&l[k][0]!=null&&l[k][1]!=null){r.push(l[k][0]);q.push(l[k][1])}}if(p=="linear"){n=h(r,q);for(var k=0;k<r.length;k++){o=n[0]*r[k]+n[1];m.push([r[k],o])}}else{if(p=="exp"||p=="exponential"){n=d(r,q);for(var k=0;k<r.length;k++){o=n[1]*Math.pow(n[0],r[k]);m.push([r[k],o])}}}return{data:m,slope:n[0],intercept:n[1]}}})(jQuery);
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery_cheats
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-07 00:00:00.000000000 Z
12
+ date: 2012-06-07 00:00:00.000000000Z
13
13
  dependencies: []
14
14
  description: JQuery Asset Pipeline tricks
15
15
  email: travis@pessetto.com
@@ -23,6 +23,67 @@ files:
23
23
  - lib/jquery_cheats.rb
24
24
  - lib/railtie.rb
25
25
  - app/assets/javascripts/jqueryCheats.js
26
+ - vendor/assets/excanvas.js
27
+ - vendor/assets/jquery.jqplot.css
28
+ - vendor/assets/jquery.jqplot.js
29
+ - vendor/assets/plugins/jqplot.barRenderer.js
30
+ - vendor/assets/plugins/jqplot.barRenderer.min.js
31
+ - vendor/assets/plugins/jqplot.BezierCurveRenderer.js
32
+ - vendor/assets/plugins/jqplot.BezierCurveRenderer.min.js
33
+ - vendor/assets/plugins/jqplot.blockRenderer.js
34
+ - vendor/assets/plugins/jqplot.blockRenderer.min.js
35
+ - vendor/assets/plugins/jqplot.bubbleRenderer.js
36
+ - vendor/assets/plugins/jqplot.bubbleRenderer.min.js
37
+ - vendor/assets/plugins/jqplot.canvasAxisLabelRenderer.js
38
+ - vendor/assets/plugins/jqplot.canvasAxisLabelRenderer.min.js
39
+ - vendor/assets/plugins/jqplot.canvasAxisTickRenderer.js
40
+ - vendor/assets/plugins/jqplot.canvasAxisTickRenderer.min.js
41
+ - vendor/assets/plugins/jqplot.canvasOverlay.js
42
+ - vendor/assets/plugins/jqplot.canvasOverlay.min.js
43
+ - vendor/assets/plugins/jqplot.canvasTextRenderer.js
44
+ - vendor/assets/plugins/jqplot.canvasTextRenderer.min.js
45
+ - vendor/assets/plugins/jqplot.categoryAxisRenderer.js
46
+ - vendor/assets/plugins/jqplot.categoryAxisRenderer.min.js
47
+ - vendor/assets/plugins/jqplot.ciParser.js
48
+ - vendor/assets/plugins/jqplot.ciParser.min.js
49
+ - vendor/assets/plugins/jqplot.cursor.js
50
+ - vendor/assets/plugins/jqplot.cursor.min.js
51
+ - vendor/assets/plugins/jqplot.dateAxisRenderer.js
52
+ - vendor/assets/plugins/jqplot.dateAxisRenderer.min.js
53
+ - vendor/assets/plugins/jqplot.donutRenderer.js
54
+ - vendor/assets/plugins/jqplot.donutRenderer.min.js
55
+ - vendor/assets/plugins/jqplot.dragable.js
56
+ - vendor/assets/plugins/jqplot.dragable.min.js
57
+ - vendor/assets/plugins/jqplot.enhancedLegendRenderer.js
58
+ - vendor/assets/plugins/jqplot.enhancedLegendRenderer.min.js
59
+ - vendor/assets/plugins/jqplot.funnelRenderer.js
60
+ - vendor/assets/plugins/jqplot.funnelRenderer.min.js
61
+ - vendor/assets/plugins/jqplot.highlighter.js
62
+ - vendor/assets/plugins/jqplot.highlighter.min.js
63
+ - vendor/assets/plugins/jqplot.json2.js
64
+ - vendor/assets/plugins/jqplot.json2.min.js
65
+ - vendor/assets/plugins/jqplot.logAxisRenderer.js
66
+ - vendor/assets/plugins/jqplot.logAxisRenderer.min.js
67
+ - vendor/assets/plugins/jqplot.mekkoAxisRenderer.js
68
+ - vendor/assets/plugins/jqplot.mekkoAxisRenderer.min.js
69
+ - vendor/assets/plugins/jqplot.mekkoRenderer.js
70
+ - vendor/assets/plugins/jqplot.mekkoRenderer.min.js
71
+ - vendor/assets/plugins/jqplot.meterGaugeRenderer.js
72
+ - vendor/assets/plugins/jqplot.meterGaugeRenderer.min.js
73
+ - vendor/assets/plugins/jqplot.ohlcRenderer.js
74
+ - vendor/assets/plugins/jqplot.ohlcRenderer.min.js
75
+ - vendor/assets/plugins/jqplot.pieRenderer.js
76
+ - vendor/assets/plugins/jqplot.pieRenderer.min.js
77
+ - vendor/assets/plugins/jqplot.pointLabels.js
78
+ - vendor/assets/plugins/jqplot.pointLabels.min.js
79
+ - vendor/assets/plugins/jqplot.pyramidAxisRenderer.js
80
+ - vendor/assets/plugins/jqplot.pyramidAxisRenderer.min.js
81
+ - vendor/assets/plugins/jqplot.pyramidGridRenderer.js
82
+ - vendor/assets/plugins/jqplot.pyramidGridRenderer.min.js
83
+ - vendor/assets/plugins/jqplot.pyramidRenderer.js
84
+ - vendor/assets/plugins/jqplot.pyramidRenderer.min.js
85
+ - vendor/assets/plugins/jqplot.trendline.js
86
+ - vendor/assets/plugins/jqplot.trendline.min.js
26
87
  - README.md
27
88
  - Rakefile
28
89
  - Manifest
@@ -53,7 +114,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
53
114
  version: '1.2'
54
115
  requirements: []
55
116
  rubyforge_project: jquery_cheats
56
- rubygems_version: 1.8.24
117
+ rubygems_version: 1.7.2
57
118
  signing_key:
58
119
  specification_version: 3
59
120
  summary: JQuery Asset Pipeline tricks