jquery-matchheight-rails 0.6.0 → 0.7.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6d1bd36ce2d5a4ca62f002e12a695383a2b43725
4
- data.tar.gz: 837ce49896fab835e77761ae73f17b8c57dbf82e
3
+ metadata.gz: 0e81bbbd4e79831a9f1b518b6389be6160c1aa62
4
+ data.tar.gz: 70357110d61082ff08ae85d5a4b959ebf491889a
5
5
  SHA512:
6
- metadata.gz: 248036b3312fc69aeffd590263816e2c5bbdf0b5cb685bfb00c7dcf75106722cede8b9c01a3dd3d5f887c737a3ae6fa66adb863fc1c6bc9dcb9a2710e041f1c0
7
- data.tar.gz: 45e0e483c5d45381aa3459506b4ef563189802f1a6dfa7ba81a534ba5da1d543ee89d54abaaf288f2e72720ebcf63b217db1cdcedd4315de5b633a31f9469ebc
6
+ metadata.gz: 39543d33a470a2d2fe3d5a2f11e6769f6dda9da2a6c8b8ef1f506e1a8e7f8b957bc93f77852ab52520d1d1f97d86ca6bc7dad6aa2c7b9ff95fc05636e60fe58c
7
+ data.tar.gz: d728c4b4bae2bce8470c027ebe35f2afec7d97b7b4f92f1cd80bea3974b7d40e014f1e1aff8cb5cbf9256d8d46b6cc8000871c630a03e535abfdd15cec4cbc53
data/.gitignore CHANGED
@@ -7,4 +7,3 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
- /*.gem
@@ -1,7 +1,7 @@
1
1
  module Jquery
2
2
  module Matchheight
3
3
  module Rails
4
- VERSION = "0.6.0".freeze
4
+ VERSION = "0.7.0.1".freeze
5
5
  end
6
6
  end
7
7
  end
@@ -1,353 +1,385 @@
1
- /**
2
- * jquery.matchHeight.js v0.6.0
3
- * http://brm.io/jquery-match-height/
4
- * License: MIT
5
- */
6
-
7
- ;(function($) {
8
- /*
9
- * internal
10
- */
11
-
12
- var _previousResizeWidth = -1,
13
- _updateTimeout = -1;
14
-
15
- /*
16
- * _parse
17
- * value parse utility function
18
- */
19
-
20
- var _parse = function(value) {
21
- // parse value and convert NaN to 0
22
- return parseFloat(value) || 0;
23
- };
24
-
25
- /*
26
- * _rows
27
- * utility function returns array of jQuery selections representing each row
28
- * (as displayed after float wrapping applied by browser)
29
- */
30
-
31
- var _rows = function(elements) {
32
- var tolerance = 1,
33
- $elements = $(elements),
34
- lastTop = null,
35
- rows = [];
36
-
37
- // group elements by their top position
38
- $elements.each(function(){
39
- var $that = $(this),
40
- top = $that.offset().top - _parse($that.css('margin-top')),
41
- lastRow = rows.length > 0 ? rows[rows.length - 1] : null;
42
-
43
- if (lastRow === null) {
44
- // first item on the row, so just push it
45
- rows.push($that);
46
- } else {
47
- // if the row top is the same, add to the row group
48
- if (Math.floor(Math.abs(lastTop - top)) <= tolerance) {
49
- rows[rows.length - 1] = lastRow.add($that);
50
- } else {
51
- // otherwise start a new row group
52
- rows.push($that);
53
- }
54
- }
55
-
56
- // keep track of the last row top
57
- lastTop = top;
58
- });
59
-
60
- return rows;
61
- };
62
-
63
- /*
64
- * _parseOptions
65
- * handle plugin options
66
- */
67
-
68
- var _parseOptions = function(options) {
69
- var opts = {
70
- byRow: true,
71
- property: 'height',
72
- target: null,
73
- remove: false
74
- };
75
-
76
- if (typeof options === 'object') {
77
- return $.extend(opts, options);
78
- }
79
-
80
- if (typeof options === 'boolean') {
81
- opts.byRow = options;
82
- } else if (options === 'remove') {
83
- opts.remove = true;
84
- }
85
-
86
- return opts;
87
- };
88
-
89
- /*
90
- * matchHeight
91
- * plugin definition
92
- */
93
-
94
- var matchHeight = $.fn.matchHeight = function(options) {
95
- var opts = _parseOptions(options);
96
-
97
- // handle remove
98
- if (opts.remove) {
99
- var that = this;
100
-
101
- // remove fixed height from all selected elements
102
- this.css(opts.property, '');
103
-
104
- // remove selected elements from all groups
105
- $.each(matchHeight._groups, function(key, group) {
106
- group.elements = group.elements.not(that);
107
- });
108
-
109
- // TODO: cleanup empty groups
110
-
111
- return this;
112
- }
113
-
114
- if (this.length <= 1 && !opts.target) {
115
- return this;
116
- }
117
-
118
- // keep track of this group so we can re-apply later on load and resize events
119
- matchHeight._groups.push({
120
- elements: this,
121
- options: opts
122
- });
123
-
124
- // match each element's height to the tallest element in the selection
125
- matchHeight._apply(this, opts);
126
-
127
- return this;
128
- };
129
-
130
- /*
131
- * plugin global options
132
- */
133
-
134
- matchHeight._groups = [];
135
- matchHeight._throttle = 80;
136
- matchHeight._maintainScroll = false;
137
- matchHeight._beforeUpdate = null;
138
- matchHeight._afterUpdate = null;
139
-
140
- /*
141
- * matchHeight._apply
142
- * apply matchHeight to given elements
143
- */
144
-
145
- matchHeight._apply = function(elements, options) {
146
- var opts = _parseOptions(options),
147
- $elements = $(elements),
148
- rows = [$elements];
149
-
150
- // take note of scroll position
151
- var scrollTop = $(window).scrollTop(),
152
- htmlHeight = $('html').outerHeight(true);
153
-
154
- // get hidden parents
155
- var $hiddenParents = $elements.parents().filter(':hidden');
156
-
157
- // cache the original inline style
158
- $hiddenParents.each(function() {
159
- var $that = $(this);
160
- $that.data('style-cache', $that.attr('style'));
161
- });
162
-
163
- // temporarily must force hidden parents visible
164
- $hiddenParents.css('display', 'block');
165
-
166
- // get rows if using byRow, otherwise assume one row
167
- if (opts.byRow && !opts.target) {
168
-
169
- // must first force an arbitrary equal height so floating elements break evenly
170
- $elements.each(function() {
171
- var $that = $(this),
172
- display = $that.css('display') === 'inline-block' ? 'inline-block' : 'block';
173
-
174
- // cache the original inline style
175
- $that.data('style-cache', $that.attr('style'));
176
-
177
- $that.css({
178
- 'display': display,
179
- 'padding-top': '0',
180
- 'padding-bottom': '0',
181
- 'margin-top': '0',
182
- 'margin-bottom': '0',
183
- 'border-top-width': '0',
184
- 'border-bottom-width': '0',
185
- 'height': '100px'
186
- });
187
- });
188
-
189
- // get the array of rows (based on element top position)
190
- rows = _rows($elements);
191
-
192
- // revert original inline styles
193
- $elements.each(function() {
194
- var $that = $(this);
195
- $that.attr('style', $that.data('style-cache') || '');
196
- });
197
- }
198
-
199
- $.each(rows, function(key, row) {
200
- var $row = $(row),
201
- targetHeight = 0;
202
-
203
- if (!opts.target) {
204
- // skip apply to rows with only one item
205
- if (opts.byRow && $row.length <= 1) {
206
- $row.css(opts.property, '');
207
- return;
208
- }
209
-
210
- // iterate the row and find the max height
211
- $row.each(function(){
212
- var $that = $(this),
213
- display = $that.css('display') === 'inline-block' ? 'inline-block' : 'block';
214
-
215
- // ensure we get the correct actual height (and not a previously set height value)
216
- var css = { 'display': display };
217
- css[opts.property] = '';
218
- $that.css(css);
219
-
220
- // find the max height (including padding, but not margin)
221
- if ($that.outerHeight(false) > targetHeight) {
222
- targetHeight = $that.outerHeight(false);
223
- }
224
-
225
- // revert display block
226
- $that.css('display', '');
227
- });
228
- } else {
229
- // if target set, use the height of the target element
230
- targetHeight = opts.target.outerHeight(false);
231
- }
232
-
233
- // iterate the row and apply the height to all elements
234
- $row.each(function(){
235
- var $that = $(this),
236
- verticalPadding = 0;
237
-
238
- // don't apply to a target
239
- if (opts.target && $that.is(opts.target)) {
240
- return;
241
- }
242
-
243
- // handle padding and border correctly (required when not using border-box)
244
- if ($that.css('box-sizing') !== 'border-box') {
245
- verticalPadding += _parse($that.css('border-top-width')) + _parse($that.css('border-bottom-width'));
246
- verticalPadding += _parse($that.css('padding-top')) + _parse($that.css('padding-bottom'));
247
- }
248
-
249
- // set the height (accounting for padding and border)
250
- $that.css(opts.property, targetHeight - verticalPadding);
251
- });
252
- });
253
-
254
- // revert hidden parents
255
- $hiddenParents.each(function() {
256
- var $that = $(this);
257
- $that.attr('style', $that.data('style-cache') || null);
258
- });
259
-
260
- // restore scroll position if enabled
261
- if (matchHeight._maintainScroll) {
262
- $(window).scrollTop((scrollTop / htmlHeight) * $('html').outerHeight(true));
263
- }
264
-
265
- return this;
266
- };
267
-
268
- /*
269
- * matchHeight._applyDataApi
270
- * applies matchHeight to all elements with a data-match-height attribute
271
- */
272
-
273
- matchHeight._applyDataApi = function() {
274
- var groups = {};
275
-
276
- // generate groups by their groupId set by elements using data-match-height
277
- $('[data-match-height], [data-mh]').each(function() {
278
- var $this = $(this),
279
- groupId = $this.attr('data-mh') || $this.attr('data-match-height');
280
-
281
- if (groupId in groups) {
282
- groups[groupId] = groups[groupId].add($this);
283
- } else {
284
- groups[groupId] = $this;
285
- }
286
- });
287
-
288
- // apply matchHeight to each group
289
- $.each(groups, function() {
290
- this.matchHeight(true);
291
- });
292
- };
293
-
294
- /*
295
- * matchHeight._update
296
- * updates matchHeight on all current groups with their correct options
297
- */
298
-
299
- var _update = function(event) {
300
- if (matchHeight._beforeUpdate) {
301
- matchHeight._beforeUpdate(event, matchHeight._groups);
302
- }
303
-
304
- $.each(matchHeight._groups, function() {
305
- matchHeight._apply(this.elements, this.options);
306
- });
307
-
308
- if (matchHeight._afterUpdate) {
309
- matchHeight._afterUpdate(event, matchHeight._groups);
310
- }
311
- };
312
-
313
- matchHeight._update = function(throttle, event) {
314
- // prevent update if fired from a resize event
315
- // where the viewport width hasn't actually changed
316
- // fixes an event looping bug in IE8
317
- if (event && event.type === 'resize') {
318
- var windowWidth = $(window).width();
319
- if (windowWidth === _previousResizeWidth) {
320
- return;
321
- }
322
- _previousResizeWidth = windowWidth;
323
- }
324
-
325
- // throttle updates
326
- if (!throttle) {
327
- _update(event);
328
- } else if (_updateTimeout === -1) {
329
- _updateTimeout = setTimeout(function() {
330
- _update(event);
331
- _updateTimeout = -1;
332
- }, matchHeight._throttle);
333
- }
334
- };
335
-
336
- /*
337
- * bind events
338
- */
339
-
340
- // apply on DOM ready event
341
- $(matchHeight._applyDataApi);
342
-
343
- // update heights on load and resize events
344
- $(window).bind('load', function(event) {
345
- matchHeight._update(false, event);
346
- });
347
-
348
- // throttled update heights on resize events
349
- $(window).bind('resize orientationchange', function(event) {
350
- matchHeight._update(true, event);
351
- });
352
-
353
- })(jQuery);
1
+ /**
2
+ * jquery-match-height 0.7.0 by @liabru
3
+ * http://brm.io/jquery-match-height/
4
+ * License: MIT
5
+ */
6
+
7
+ ;(function(factory) { // eslint-disable-line no-extra-semi
8
+ 'use strict';
9
+ if (typeof define === 'function' && define.amd) {
10
+ // AMD
11
+ define(['jquery'], factory);
12
+ } else if (typeof module !== 'undefined' && module.exports) {
13
+ // CommonJS
14
+ module.exports = factory(require('jquery'));
15
+ } else {
16
+ // Global
17
+ factory(jQuery);
18
+ }
19
+ })(function($) {
20
+ /*
21
+ * internal
22
+ */
23
+
24
+ var _previousResizeWidth = -1,
25
+ _updateTimeout = -1;
26
+
27
+ /*
28
+ * _parse
29
+ * value parse utility function
30
+ */
31
+
32
+ var _parse = function(value) {
33
+ // parse value and convert NaN to 0
34
+ return parseFloat(value) || 0;
35
+ };
36
+
37
+ /*
38
+ * _rows
39
+ * utility function returns array of jQuery selections representing each row
40
+ * (as displayed after float wrapping applied by browser)
41
+ */
42
+
43
+ var _rows = function(elements) {
44
+ var tolerance = 1,
45
+ $elements = $(elements),
46
+ lastTop = null,
47
+ rows = [];
48
+
49
+ // group elements by their top position
50
+ $elements.each(function(){
51
+ var $that = $(this),
52
+ top = $that.offset().top - _parse($that.css('margin-top')),
53
+ lastRow = rows.length > 0 ? rows[rows.length - 1] : null;
54
+
55
+ if (lastRow === null) {
56
+ // first item on the row, so just push it
57
+ rows.push($that);
58
+ } else {
59
+ // if the row top is the same, add to the row group
60
+ if (Math.floor(Math.abs(lastTop - top)) <= tolerance) {
61
+ rows[rows.length - 1] = lastRow.add($that);
62
+ } else {
63
+ // otherwise start a new row group
64
+ rows.push($that);
65
+ }
66
+ }
67
+
68
+ // keep track of the last row top
69
+ lastTop = top;
70
+ });
71
+
72
+ return rows;
73
+ };
74
+
75
+ /*
76
+ * _parseOptions
77
+ * handle plugin options
78
+ */
79
+
80
+ var _parseOptions = function(options) {
81
+ var opts = {
82
+ byRow: true,
83
+ property: 'height',
84
+ target: null,
85
+ remove: false
86
+ };
87
+
88
+ if (typeof options === 'object') {
89
+ return $.extend(opts, options);
90
+ }
91
+
92
+ if (typeof options === 'boolean') {
93
+ opts.byRow = options;
94
+ } else if (options === 'remove') {
95
+ opts.remove = true;
96
+ }
97
+
98
+ return opts;
99
+ };
100
+
101
+ /*
102
+ * matchHeight
103
+ * plugin definition
104
+ */
105
+
106
+ var matchHeight = $.fn.matchHeight = function(options) {
107
+ var opts = _parseOptions(options);
108
+
109
+ // handle remove
110
+ if (opts.remove) {
111
+ var that = this;
112
+
113
+ // remove fixed height from all selected elements
114
+ this.css(opts.property, '');
115
+
116
+ // remove selected elements from all groups
117
+ $.each(matchHeight._groups, function(key, group) {
118
+ group.elements = group.elements.not(that);
119
+ });
120
+
121
+ // TODO: cleanup empty groups
122
+
123
+ return this;
124
+ }
125
+
126
+ if (this.length <= 1 && !opts.target) {
127
+ return this;
128
+ }
129
+
130
+ // keep track of this group so we can re-apply later on load and resize events
131
+ matchHeight._groups.push({
132
+ elements: this,
133
+ options: opts
134
+ });
135
+
136
+ // match each element's height to the tallest element in the selection
137
+ matchHeight._apply(this, opts);
138
+
139
+ return this;
140
+ };
141
+
142
+ /*
143
+ * plugin global options
144
+ */
145
+
146
+ matchHeight.version = '0.7.0';
147
+ matchHeight._groups = [];
148
+ matchHeight._throttle = 80;
149
+ matchHeight._maintainScroll = false;
150
+ matchHeight._beforeUpdate = null;
151
+ matchHeight._afterUpdate = null;
152
+ matchHeight._rows = _rows;
153
+ matchHeight._parse = _parse;
154
+ matchHeight._parseOptions = _parseOptions;
155
+
156
+ /*
157
+ * matchHeight._apply
158
+ * apply matchHeight to given elements
159
+ */
160
+
161
+ matchHeight._apply = function(elements, options) {
162
+ var opts = _parseOptions(options),
163
+ $elements = $(elements),
164
+ rows = [$elements];
165
+
166
+ // take note of scroll position
167
+ var scrollTop = $(window).scrollTop(),
168
+ htmlHeight = $('html').outerHeight(true);
169
+
170
+ // get hidden parents
171
+ var $hiddenParents = $elements.parents().filter(':hidden');
172
+
173
+ // cache the original inline style
174
+ $hiddenParents.each(function() {
175
+ var $that = $(this);
176
+ $that.data('style-cache', $that.attr('style'));
177
+ });
178
+
179
+ // temporarily must force hidden parents visible
180
+ $hiddenParents.css('display', 'block');
181
+
182
+ // get rows if using byRow, otherwise assume one row
183
+ if (opts.byRow && !opts.target) {
184
+
185
+ // must first force an arbitrary equal height so floating elements break evenly
186
+ $elements.each(function() {
187
+ var $that = $(this),
188
+ display = $that.css('display');
189
+
190
+ // temporarily force a usable display value
191
+ if (display !== 'inline-block' && display !== 'flex' && display !== 'inline-flex') {
192
+ display = 'block';
193
+ }
194
+
195
+ // cache the original inline style
196
+ $that.data('style-cache', $that.attr('style'));
197
+
198
+ $that.css({
199
+ 'display': display,
200
+ 'padding-top': '0',
201
+ 'padding-bottom': '0',
202
+ 'margin-top': '0',
203
+ 'margin-bottom': '0',
204
+ 'border-top-width': '0',
205
+ 'border-bottom-width': '0',
206
+ 'height': '100px',
207
+ 'overflow': 'hidden'
208
+ });
209
+ });
210
+
211
+ // get the array of rows (based on element top position)
212
+ rows = _rows($elements);
213
+
214
+ // revert original inline styles
215
+ $elements.each(function() {
216
+ var $that = $(this);
217
+ $that.attr('style', $that.data('style-cache') || '');
218
+ });
219
+ }
220
+
221
+ $.each(rows, function(key, row) {
222
+ var $row = $(row),
223
+ targetHeight = 0;
224
+
225
+ if (!opts.target) {
226
+ // skip apply to rows with only one item
227
+ if (opts.byRow && $row.length <= 1) {
228
+ $row.css(opts.property, '');
229
+ return;
230
+ }
231
+
232
+ // iterate the row and find the max height
233
+ $row.each(function(){
234
+ var $that = $(this),
235
+ style = $that.attr('style'),
236
+ display = $that.css('display');
237
+
238
+ // temporarily force a usable display value
239
+ if (display !== 'inline-block' && display !== 'flex' && display !== 'inline-flex') {
240
+ display = 'block';
241
+ }
242
+
243
+ // ensure we get the correct actual height (and not a previously set height value)
244
+ var css = { 'display': display };
245
+ css[opts.property] = '';
246
+ $that.css(css);
247
+
248
+ // find the max height (including padding, but not margin)
249
+ if ($that.outerHeight(false) > targetHeight) {
250
+ targetHeight = $that.outerHeight(false);
251
+ }
252
+
253
+ // revert styles
254
+ if (style) {
255
+ $that.attr('style', style);
256
+ } else {
257
+ $that.css('display', '');
258
+ }
259
+ });
260
+ } else {
261
+ // if target set, use the height of the target element
262
+ targetHeight = opts.target.outerHeight(false);
263
+ }
264
+
265
+ // iterate the row and apply the height to all elements
266
+ $row.each(function(){
267
+ var $that = $(this),
268
+ verticalPadding = 0;
269
+
270
+ // don't apply to a target
271
+ if (opts.target && $that.is(opts.target)) {
272
+ return;
273
+ }
274
+
275
+ // handle padding and border correctly (required when not using border-box)
276
+ if ($that.css('box-sizing') !== 'border-box') {
277
+ verticalPadding += _parse($that.css('border-top-width')) + _parse($that.css('border-bottom-width'));
278
+ verticalPadding += _parse($that.css('padding-top')) + _parse($that.css('padding-bottom'));
279
+ }
280
+
281
+ // set the height (accounting for padding and border)
282
+ $that.css(opts.property, (targetHeight - verticalPadding) + 'px');
283
+ });
284
+ });
285
+
286
+ // revert hidden parents
287
+ $hiddenParents.each(function() {
288
+ var $that = $(this);
289
+ $that.attr('style', $that.data('style-cache') || null);
290
+ });
291
+
292
+ // restore scroll position if enabled
293
+ if (matchHeight._maintainScroll) {
294
+ $(window).scrollTop((scrollTop / htmlHeight) * $('html').outerHeight(true));
295
+ }
296
+
297
+ return this;
298
+ };
299
+
300
+ /*
301
+ * matchHeight._applyDataApi
302
+ * applies matchHeight to all elements with a data-match-height attribute
303
+ */
304
+
305
+ matchHeight._applyDataApi = function() {
306
+ var groups = {};
307
+
308
+ // generate groups by their groupId set by elements using data-match-height
309
+ $('[data-match-height], [data-mh]').each(function() {
310
+ var $this = $(this),
311
+ groupId = $this.attr('data-mh') || $this.attr('data-match-height');
312
+
313
+ if (groupId in groups) {
314
+ groups[groupId] = groups[groupId].add($this);
315
+ } else {
316
+ groups[groupId] = $this;
317
+ }
318
+ });
319
+
320
+ // apply matchHeight to each group
321
+ $.each(groups, function() {
322
+ this.matchHeight(true);
323
+ });
324
+ };
325
+
326
+ /*
327
+ * matchHeight._update
328
+ * updates matchHeight on all current groups with their correct options
329
+ */
330
+
331
+ var _update = function(event) {
332
+ if (matchHeight._beforeUpdate) {
333
+ matchHeight._beforeUpdate(event, matchHeight._groups);
334
+ }
335
+
336
+ $.each(matchHeight._groups, function() {
337
+ matchHeight._apply(this.elements, this.options);
338
+ });
339
+
340
+ if (matchHeight._afterUpdate) {
341
+ matchHeight._afterUpdate(event, matchHeight._groups);
342
+ }
343
+ };
344
+
345
+ matchHeight._update = function(throttle, event) {
346
+ // prevent update if fired from a resize event
347
+ // where the viewport width hasn't actually changed
348
+ // fixes an event looping bug in IE8
349
+ if (event && event.type === 'resize') {
350
+ var windowWidth = $(window).width();
351
+ if (windowWidth === _previousResizeWidth) {
352
+ return;
353
+ }
354
+ _previousResizeWidth = windowWidth;
355
+ }
356
+
357
+ // throttle updates
358
+ if (!throttle) {
359
+ _update(event);
360
+ } else if (_updateTimeout === -1) {
361
+ _updateTimeout = setTimeout(function() {
362
+ _update(event);
363
+ _updateTimeout = -1;
364
+ }, matchHeight._throttle);
365
+ }
366
+ };
367
+
368
+ /*
369
+ * bind events
370
+ */
371
+
372
+ // apply on DOM ready event
373
+ $(matchHeight._applyDataApi);
374
+
375
+ // update heights on load and resize events
376
+ $(window).bind('load', function(event) {
377
+ matchHeight._update(false, event);
378
+ });
379
+
380
+ // throttled update heights on resize events
381
+ $(window).bind('resize orientationchange', function(event) {
382
+ matchHeight._update(true, event);
383
+ });
384
+
385
+ });
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jquery-matchheight-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.7.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Daniel Dias
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-03-07 00:00:00.000000000 Z
11
+ date: 2017-02-17 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: matchHeight makes the height of all selected elements exactly equal
14
14
  email:
@@ -48,7 +48,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
48
48
  version: '0'
49
49
  requirements: []
50
50
  rubyforge_project:
51
- rubygems_version: 2.6.10
51
+ rubygems_version: 2.5.1
52
52
  signing_key:
53
53
  specification_version: 4
54
54
  summary: jquery.matchHeight.js for the Rails Asset Pipeline