less-rails-bootstrap 3.3.1.0 → 3.3.2.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 (42) hide show
  1. checksums.yaml +4 -4
  2. data/Appraisals +4 -0
  3. data/CHANGELOG.md +4 -0
  4. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
  5. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +273 -214
  6. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  7. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
  8. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  9. data/app/assets/javascripts/twitter/bootstrap/affix.js +4 -4
  10. data/app/assets/javascripts/twitter/bootstrap/alert.js +3 -3
  11. data/app/assets/javascripts/twitter/bootstrap/button.js +3 -3
  12. data/app/assets/javascripts/twitter/bootstrap/carousel.js +7 -10
  13. data/app/assets/javascripts/twitter/bootstrap/collapse.js +4 -4
  14. data/app/assets/javascripts/twitter/bootstrap/dropdown.js +3 -3
  15. data/app/assets/javascripts/twitter/bootstrap/modal.js +3 -3
  16. data/app/assets/javascripts/twitter/bootstrap/popover.js +7 -13
  17. data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +3 -3
  18. data/app/assets/javascripts/twitter/bootstrap/tab.js +3 -3
  19. data/app/assets/javascripts/twitter/bootstrap/tooltip.js +10 -16
  20. data/app/assets/javascripts/twitter/bootstrap/transition.js +2 -2
  21. data/app/frameworks/twitter/bootstrap/alerts.less +5 -0
  22. data/app/frameworks/twitter/bootstrap/badges.less +4 -0
  23. data/app/frameworks/twitter/bootstrap/button-groups.less +2 -2
  24. data/app/frameworks/twitter/bootstrap/buttons.less +1 -1
  25. data/app/frameworks/twitter/bootstrap/carousel.less +8 -6
  26. data/app/frameworks/twitter/bootstrap/close.less +1 -0
  27. data/app/frameworks/twitter/bootstrap/dropdowns.less +2 -1
  28. data/app/frameworks/twitter/bootstrap/forms.less +41 -21
  29. data/app/frameworks/twitter/bootstrap/glyphicons.less +67 -0
  30. data/app/frameworks/twitter/bootstrap/jumbotron.less +1 -0
  31. data/app/frameworks/twitter/bootstrap/media.less +14 -0
  32. data/app/frameworks/twitter/bootstrap/mixins/vendor-prefixes.less +1 -1
  33. data/app/frameworks/twitter/bootstrap/navbar.less +1 -0
  34. data/app/frameworks/twitter/bootstrap/panels.less +5 -1
  35. data/app/frameworks/twitter/bootstrap/popovers.less +1 -1
  36. data/app/frameworks/twitter/bootstrap/tables.less +3 -3
  37. data/app/frameworks/twitter/bootstrap/theme.less +3 -2
  38. data/app/frameworks/twitter/bootstrap/tooltip.less +1 -1
  39. data/app/frameworks/twitter/bootstrap/variables.less +3 -2
  40. data/less-rails-bootstrap.gemspec +1 -1
  41. data/lib/less/rails/bootstrap/version.rb +1 -1
  42. metadata +6 -5
@@ -23,6 +23,7 @@
23
23
  // Additional properties for button version
24
24
  // iOS requires the button element instead of an anchor tag.
25
25
  // If you want the anchor version, it requires `href="#"`.
26
+ // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile
26
27
  button& {
27
28
  padding: 0;
28
29
  cursor: pointer;
@@ -16,6 +16,7 @@
16
16
  }
17
17
 
18
18
  // The dropdown wrapper (div)
19
+ .dropup,
19
20
  .dropdown {
20
21
  position: relative;
21
22
  }
@@ -190,7 +191,7 @@
190
191
  .dropdown-menu {
191
192
  top: auto;
192
193
  bottom: 100%;
193
- margin-bottom: 1px;
194
+ margin-bottom: 2px;
194
195
  }
195
196
  }
196
197
 
@@ -123,7 +123,7 @@ output {
123
123
  background-color: @input-bg;
124
124
  background-image: none; // Reset unusual Firefox-on-Android default style; see https://github.com/necolas/normalize.css/issues/214
125
125
  border: 1px solid @input-border;
126
- border-radius: @input-border-radius;
126
+ border-radius: @input-border-radius; // Note: This has no effect on <select>s in some browsers, due to the limited stylability of <select>s in CSS.
127
127
  .box-shadow(inset 0 1px 1px rgba(0,0,0,.075));
128
128
  .transition(~"border-color ease-in-out .15s, box-shadow ease-in-out .15s");
129
129
 
@@ -143,7 +143,7 @@ output {
143
143
  fieldset[disabled] & {
144
144
  cursor: @cursor-disabled;
145
145
  background-color: @input-bg-disabled;
146
- opacity: 1; // iOS fix for unreadable disabled content
146
+ opacity: 1; // iOS fix for unreadable disabled content; see https://github.com/twbs/bootstrap/issues/11655
147
147
  }
148
148
 
149
149
  // Reset height for `textarea`s
@@ -170,7 +170,7 @@ input[type="search"] {
170
170
  // In Mobile Safari, setting `display: block` on temporal inputs causes the
171
171
  // text within the input to become vertically misaligned. As a workaround, we
172
172
  // set a pixel line-height that matches the given height of the input, but only
173
- // for Safari.
173
+ // for Safari. See https://bugs.webkit.org/show_bug.cgi?id=139848
174
174
 
175
175
  @media screen and (-webkit-min-device-pixel-ratio: 0) {
176
176
  input[type="date"],
@@ -178,18 +178,16 @@ input[type="search"] {
178
178
  input[type="datetime-local"],
179
179
  input[type="month"] {
180
180
  line-height: @input-height-base;
181
- }
182
- input[type="date"].input-sm,
183
- input[type="time"].input-sm,
184
- input[type="datetime-local"].input-sm,
185
- input[type="month"].input-sm {
186
- line-height: @input-height-small;
187
- }
188
- input[type="date"].input-lg,
189
- input[type="time"].input-lg,
190
- input[type="datetime-local"].input-lg,
191
- input[type="month"].input-lg {
192
- line-height: @input-height-large;
181
+
182
+ &.input-sm,
183
+ .input-group-sm & {
184
+ line-height: @input-height-small;
185
+ }
186
+
187
+ &.input-lg,
188
+ .input-group-lg & {
189
+ line-height: @input-height-large;
190
+ }
193
191
  }
194
192
  }
195
193
 
@@ -309,16 +307,39 @@ input[type="checkbox"] {
309
307
  //
310
308
  // Build on `.form-control` with modifier classes to decrease or increase the
311
309
  // height and font-size of form controls.
310
+ //
311
+ // The `.form-group-* form-control` variations are sadly duplicated to avoid the
312
+ // issue documented in https://github.com/twbs/bootstrap/issues/15074.
312
313
 
313
- .input-sm,
314
- .form-group-sm .form-control {
314
+ .input-sm {
315
315
  .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
316
316
  }
317
+ .form-group-sm {
318
+ .form-control {
319
+ .input-size(@input-height-small; @padding-small-vertical; @padding-small-horizontal; @font-size-small; @line-height-small; @input-border-radius-small);
320
+ }
321
+ .form-control-static {
322
+ height: @input-height-small;
323
+ padding: @padding-small-vertical @padding-small-horizontal;
324
+ font-size: @font-size-small;
325
+ line-height: @line-height-small;
326
+ }
327
+ }
317
328
 
318
- .input-lg,
319
- .form-group-lg .form-control {
329
+ .input-lg {
320
330
  .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
321
331
  }
332
+ .form-group-lg {
333
+ .form-control {
334
+ .input-size(@input-height-large; @padding-large-vertical; @padding-large-horizontal; @font-size-large; @line-height-large; @input-border-radius-large);
335
+ }
336
+ .form-control-static {
337
+ height: @input-height-large;
338
+ padding: @padding-large-vertical @padding-large-horizontal;
339
+ font-size: @font-size-large;
340
+ line-height: @line-height-large;
341
+ }
342
+ }
322
343
 
323
344
 
324
345
  // Form control feedback states
@@ -450,8 +471,7 @@ input[type="checkbox"] {
450
471
  }
451
472
 
452
473
  // Remove default margin on radios/checkboxes that were used for stacking, and
453
- // then undo the floating of radios and checkboxes to match (which also avoids
454
- // a bug in WebKit: https://github.com/twbs/bootstrap/issues/1969).
474
+ // then undo the floating of radios and checkboxes to match.
455
475
  .radio,
456
476
  .checkbox {
457
477
  display: inline-block;
@@ -12,6 +12,7 @@
12
12
  font-family: 'Glyphicons Halflings';
13
13
  src: asset-url('@{icon-font-path}@{icon-font-name}.eot');
14
14
  src: asset-url('@{icon-font-path}@{icon-font-name}.eot?#iefix') format('embedded-opentype'),
15
+ asset-url('@{icon-font-path}@{icon-font-name}.woff2') format('woff2'),
15
16
  asset-url('@{icon-font-path}@{icon-font-name}.woff') format('woff'),
16
17
  asset-url('@{icon-font-path}@{icon-font-name}.ttf') format('truetype'),
17
18
  asset-url('@{icon-font-path}@{icon-font-name}.svg#@{icon-font-svg-id}') format('svg');
@@ -232,3 +233,69 @@
232
233
  .glyphicon-cloud-upload { &:before { content: "\e198"; } }
233
234
  .glyphicon-tree-conifer { &:before { content: "\e199"; } }
234
235
  .glyphicon-tree-deciduous { &:before { content: "\e200"; } }
236
+ .glyphicon-cd { &:before { content: "\e201"; } }
237
+ .glyphicon-save-file { &:before { content: "\e202"; } }
238
+ .glyphicon-open-file { &:before { content: "\e203"; } }
239
+ .glyphicon-level-up { &:before { content: "\e204"; } }
240
+ .glyphicon-copy { &:before { content: "\e205"; } }
241
+ .glyphicon-paste { &:before { content: "\e206"; } }
242
+ // The following 2 Glyphicons are omitted for the time being because
243
+ // they currently use Unicode codepoints that are outside the
244
+ // Basic Multilingual Plane (BMP). Older buggy versions of WebKit can't handle
245
+ // non-BMP codepoints in CSS string escapes, and thus can't display these two icons.
246
+ // Notably, the bug affects some older versions of the Android Browser.
247
+ // More info: https://github.com/twbs/bootstrap/issues/10106
248
+ // .glyphicon-door { &:before { content: "\1f6aa"; } }
249
+ // .glyphicon-key { &:before { content: "\1f511"; } }
250
+ .glyphicon-alert { &:before { content: "\e209"; } }
251
+ .glyphicon-equalizer { &:before { content: "\e210"; } }
252
+ .glyphicon-king { &:before { content: "\e211"; } }
253
+ .glyphicon-queen { &:before { content: "\e212"; } }
254
+ .glyphicon-pawn { &:before { content: "\e213"; } }
255
+ .glyphicon-bishop { &:before { content: "\e214"; } }
256
+ .glyphicon-knight { &:before { content: "\e215"; } }
257
+ .glyphicon-baby-formula { &:before { content: "\e216"; } }
258
+ .glyphicon-tent { &:before { content: "\26fa"; } }
259
+ .glyphicon-blackboard { &:before { content: "\e218"; } }
260
+ .glyphicon-bed { &:before { content: "\e219"; } }
261
+ .glyphicon-apple { &:before { content: "\f8ff"; } }
262
+ .glyphicon-erase { &:before { content: "\e221"; } }
263
+ .glyphicon-hourglass { &:before { content: "\231b"; } }
264
+ .glyphicon-lamp { &:before { content: "\e223"; } }
265
+ .glyphicon-duplicate { &:before { content: "\e224"; } }
266
+ .glyphicon-piggy-bank { &:before { content: "\e225"; } }
267
+ .glyphicon-scissors { &:before { content: "\e226"; } }
268
+ .glyphicon-bitcoin { &:before { content: "\e227"; } }
269
+ .glyphicon-yen { &:before { content: "\00a5"; } }
270
+ .glyphicon-ruble { &:before { content: "\20bd"; } }
271
+ .glyphicon-scale { &:before { content: "\e230"; } }
272
+ .glyphicon-ice-lolly { &:before { content: "\e231"; } }
273
+ .glyphicon-ice-lolly-tasted { &:before { content: "\e232"; } }
274
+ .glyphicon-education { &:before { content: "\e233"; } }
275
+ .glyphicon-option-horizontal { &:before { content: "\e234"; } }
276
+ .glyphicon-option-vertical { &:before { content: "\e235"; } }
277
+ .glyphicon-menu-hamburger { &:before { content: "\e236"; } }
278
+ .glyphicon-modal-window { &:before { content: "\e237"; } }
279
+ .glyphicon-oil { &:before { content: "\e238"; } }
280
+ .glyphicon-grain { &:before { content: "\e239"; } }
281
+ .glyphicon-sunglasses { &:before { content: "\e240"; } }
282
+ .glyphicon-text-size { &:before { content: "\e241"; } }
283
+ .glyphicon-text-color { &:before { content: "\e242"; } }
284
+ .glyphicon-text-background { &:before { content: "\e243"; } }
285
+ .glyphicon-object-align-top { &:before { content: "\e244"; } }
286
+ .glyphicon-object-align-bottom { &:before { content: "\e245"; } }
287
+ .glyphicon-object-align-horizontal{ &:before { content: "\e246"; } }
288
+ .glyphicon-object-align-left { &:before { content: "\e247"; } }
289
+ .glyphicon-object-align-vertical { &:before { content: "\e248"; } }
290
+ .glyphicon-object-align-right { &:before { content: "\e249"; } }
291
+ .glyphicon-triangle-right { &:before { content: "\e250"; } }
292
+ .glyphicon-triangle-left { &:before { content: "\e251"; } }
293
+ .glyphicon-triangle-bottom { &:before { content: "\e252"; } }
294
+ .glyphicon-triangle-top { &:before { content: "\e253"; } }
295
+ .glyphicon-console { &:before { content: "\e254"; } }
296
+ .glyphicon-superscript { &:before { content: "\e255"; } }
297
+ .glyphicon-subscript { &:before { content: "\e256"; } }
298
+ .glyphicon-menu-left { &:before { content: "\e257"; } }
299
+ .glyphicon-menu-right { &:before { content: "\e258"; } }
300
+ .glyphicon-menu-down { &:before { content: "\e259"; } }
301
+ .glyphicon-menu-up { &:before { content: "\e260"; } }
@@ -13,6 +13,7 @@
13
13
  .h1 {
14
14
  color: @jumbotron-heading-color;
15
15
  }
16
+
16
17
  p {
17
18
  margin-bottom: (@jumbotron-padding / 2);
18
19
  font-size: @jumbotron-font-size;
@@ -7,6 +7,20 @@
7
7
  }
8
8
  }
9
9
 
10
+ .media,
11
+ .media-body {
12
+ zoom: 1;
13
+ overflow: hidden;
14
+ }
15
+
16
+ .media-body {
17
+ width: 10000px;
18
+ }
19
+
20
+ .media-object {
21
+ display: block;
22
+ }
23
+
10
24
  .media-right,
11
25
  .media > .pull-right {
12
26
  padding-left: 10px;
@@ -102,7 +102,7 @@
102
102
  // Firefox
103
103
  &::-moz-placeholder {
104
104
  color: @color;
105
- opacity: 1; // See https://github.com/twbs/bootstrap/pull/11526
105
+ opacity: 1; // Override Firefox's unusual default opacity; see https://github.com/twbs/bootstrap/pull/11526
106
106
  }
107
107
  &:-ms-input-placeholder { color: @color; } // Internet Explorer 10+
108
108
  &::-webkit-input-placeholder { color: @color; } // Safari and Chrome
@@ -331,6 +331,7 @@
331
331
  }
332
332
  // Menu position and menu caret support for dropups via extra dropup class
333
333
  .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
334
+ margin-bottom: 0;
334
335
  .border-top-radius(@navbar-border-radius);
335
336
  .border-bottom-radius(0);
336
337
  }
@@ -36,7 +36,11 @@
36
36
  font-size: ceil((@font-size-base * 1.125));
37
37
  color: inherit;
38
38
 
39
- > a {
39
+ > a,
40
+ > small,
41
+ > .small,
42
+ > small > a,
43
+ > .small > a {
40
44
  color: inherit;
41
45
  }
42
46
  }
@@ -11,7 +11,7 @@
11
11
  display: none;
12
12
  max-width: @popover-max-width;
13
13
  padding: 1px;
14
- // Reset font and text propertes given new insertion method
14
+ // Reset font and text properties given new insertion method
15
15
  font-family: @font-family-base;
16
16
  font-size: @font-size-base;
17
17
  font-weight: normal;
@@ -111,7 +111,7 @@ th {
111
111
  // Default zebra-stripe styles (alternating gray and transparent backgrounds)
112
112
 
113
113
  .table-striped {
114
- > tbody > tr:nth-child(odd) {
114
+ > tbody > tr:nth-of-type(odd) {
115
115
  background-color: @table-bg-accent;
116
116
  }
117
117
  }
@@ -133,7 +133,7 @@ th {
133
133
  // Reset default table behavior
134
134
 
135
135
  table col[class*="col-"] {
136
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
136
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
137
137
  float: none;
138
138
  display: table-column;
139
139
  }
@@ -141,7 +141,7 @@ table {
141
141
  td,
142
142
  th {
143
143
  &[class*="col-"] {
144
- position: static; // Prevent border hiding in Firefox and IE9/10 (see https://github.com/twbs/bootstrap/issues/11623)
144
+ position: static; // Prevent border hiding in Firefox and IE9-11 (see https://github.com/twbs/bootstrap/issues/11623)
145
145
  float: none;
146
146
  display: table-cell;
147
147
  }
@@ -36,7 +36,7 @@
36
36
  // Mixin for generating new styles
37
37
  .btn-styles(@btn-color: #555) {
38
38
  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
39
- .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners
39
+ .reset-filter(); // Disable gradients for IE9 because filter bleeds through rounded corners; see https://github.com/twbs/bootstrap/issues/10620
40
40
  background-repeat: repeat-x;
41
41
  border-color: darken(@btn-color, 14%);
42
42
 
@@ -52,6 +52,7 @@
52
52
  border-color: darken(@btn-color, 14%);
53
53
  }
54
54
 
55
+ &.disabled,
55
56
  &:disabled,
56
57
  &[disabled] {
57
58
  background-color: darken(@btn-color, 12%);
@@ -130,7 +131,7 @@
130
131
  // Inverted navbar
131
132
  .navbar-inverse {
132
133
  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
133
- .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered
134
+ .reset-filter(); // Remove gradient in IE<10 to fix bug where dropdowns don't get triggered; see https://github.com/twbs/bootstrap/issues/10257
134
135
 
135
136
  .navbar-nav > .open > a,
136
137
  .navbar-nav > .active > a {
@@ -9,7 +9,7 @@
9
9
  z-index: @zindex-tooltip;
10
10
  display: block;
11
11
  visibility: visible;
12
- // Reset font and text propertes given new insertion method
12
+ // Reset font and text properties given new insertion method
13
13
  font-family: @font-family-base;
14
14
  font-size: @font-size-small;
15
15
  font-weight: normal;
@@ -14,7 +14,7 @@
14
14
  @gray-light: lighten(@gray-base, 46.7%); // #777
15
15
  @gray-lighter: lighten(@gray-base, 93.5%); // #eee
16
16
 
17
- @brand-primary: darken(#428bca, 6.5%);
17
+ @brand-primary: darken(#428bca, 6.5%); // #337ab7
18
18
  @brand-success: #5cb85c;
19
19
  @brand-info: #5bc0de;
20
20
  @brand-warning: #f0ad4e;
@@ -99,7 +99,7 @@
99
99
  @padding-xs-vertical: 1px;
100
100
  @padding-xs-horizontal: 5px;
101
101
 
102
- @line-height-large: 1.33;
102
+ @line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome
103
103
  @line-height-small: 1.5;
104
104
 
105
105
  @border-radius-base: 4px;
@@ -187,6 +187,7 @@
187
187
 
188
188
  // TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
189
189
  //** Default `.form-control` border radius
190
+ // This has no effect on `<select>`s in some browsers, due to the limited stylability of `<select>`s in CSS.
190
191
  @input-border-radius: @border-radius-base;
191
192
  //** Large `.form-control` border radius
192
193
  @input-border-radius-large: @border-radius-large;
@@ -19,6 +19,6 @@ Gem::Specification.new do |gem|
19
19
 
20
20
  gem.add_development_dependency 'minitest', '>= 4.0'
21
21
  gem.add_development_dependency 'guard-minitest'
22
- gem.add_development_dependency 'rails', ['>= 3.1', '<= 4.1']
22
+ gem.add_development_dependency 'rails', ['>= 3.1', '<= 4.2']
23
23
  gem.add_development_dependency 'appraisal'
24
24
  end
@@ -1,7 +1,7 @@
1
1
  module Less
2
2
  module Rails
3
3
  module Bootstrap
4
- VERSION = "3.3.1.0"
4
+ VERSION = '3.3.2.0'
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: less-rails-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.1.0
4
+ version: 3.3.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ken Collins
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-13 00:00:00.000000000 Z
11
+ date: 2015-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: less-rails
@@ -61,7 +61,7 @@ dependencies:
61
61
  version: '3.1'
62
62
  - - "<="
63
63
  - !ruby/object:Gem::Version
64
- version: '4.1'
64
+ version: '4.2'
65
65
  type: :development
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
@@ -71,7 +71,7 @@ dependencies:
71
71
  version: '3.1'
72
72
  - - "<="
73
73
  - !ruby/object:Gem::Version
74
- version: '4.1'
74
+ version: '4.2'
75
75
  - !ruby/object:Gem::Dependency
76
76
  name: appraisal
77
77
  requirement: !ruby/object:Gem::Requirement
@@ -107,6 +107,7 @@ files:
107
107
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg
108
108
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf
109
109
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff
110
+ - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff2
110
111
  - app/assets/javascripts/twitter/bootstrap.js
111
112
  - app/assets/javascripts/twitter/bootstrap/affix.js
112
113
  - app/assets/javascripts/twitter/bootstrap/alert.js
@@ -230,7 +231,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
230
231
  version: '0'
231
232
  requirements: []
232
233
  rubyforge_project:
233
- rubygems_version: 2.2.2
234
+ rubygems_version: 2.4.5
234
235
  signing_key:
235
236
  specification_version: 4
236
237
  summary: CSS toolkit from Twitter For Rails 3.1 Asset Pipeline