twitter-bootswatch-rails 3.2.0.0 → 3.3.2.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (61) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.eot +0 -0
  3. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg +272 -213
  4. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf +0 -0
  5. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff +0 -0
  6. data/app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff2 +0 -0
  7. data/app/assets/javascripts/twitter/bootstrap/affix.js +44 -24
  8. data/app/assets/javascripts/twitter/bootstrap/alert.js +7 -5
  9. data/app/assets/javascripts/twitter/bootstrap/button.js +17 -11
  10. data/app/assets/javascripts/twitter/bootstrap/carousel.js +31 -17
  11. data/app/assets/javascripts/twitter/bootstrap/collapse.js +70 -29
  12. data/app/assets/javascripts/twitter/bootstrap/dropdown.js +21 -11
  13. data/app/assets/javascripts/twitter/bootstrap/modal.js +68 -24
  14. data/app/assets/javascripts/twitter/bootstrap/popover.js +4 -4
  15. data/app/assets/javascripts/twitter/bootstrap/scrollspy.js +13 -8
  16. data/app/assets/javascripts/twitter/bootstrap/tab.js +42 -17
  17. data/app/assets/javascripts/twitter/bootstrap/tooltip.js +54 -39
  18. data/app/assets/javascripts/twitter/bootstrap/transition.js +2 -2
  19. data/lib/generators/bootswatch/import/import_generator.rb +0 -4
  20. data/lib/generators/bootswatch/install/templates/variables.less.tt +33 -22
  21. data/lib/twitter/bootswatch/rails/version.rb +1 -1
  22. data/vendor/toolkit/twitter/bootstrap/alerts.less +5 -0
  23. data/vendor/toolkit/twitter/bootstrap/badges.less +11 -1
  24. data/vendor/toolkit/twitter/bootstrap/button-groups.less +18 -15
  25. data/vendor/toolkit/twitter/bootstrap/buttons.less +8 -5
  26. data/vendor/toolkit/twitter/bootstrap/carousel.less +26 -0
  27. data/vendor/toolkit/twitter/bootstrap/close.less +1 -0
  28. data/vendor/toolkit/twitter/bootstrap/code.less +1 -0
  29. data/vendor/toolkit/twitter/bootstrap/component-animations.less +5 -2
  30. data/vendor/toolkit/twitter/bootstrap/dropdowns.less +5 -6
  31. data/vendor/toolkit/twitter/bootstrap/forms.less +70 -44
  32. data/vendor/toolkit/twitter/bootstrap/glyphicons.less +69 -1
  33. data/vendor/toolkit/twitter/bootstrap/jumbotron.less +7 -5
  34. data/vendor/toolkit/twitter/bootstrap/list-group.less +1 -8
  35. data/vendor/toolkit/twitter/bootstrap/media.less +35 -30
  36. data/vendor/toolkit/twitter/bootstrap/mixins/buttons.less +2 -0
  37. data/vendor/toolkit/twitter/bootstrap/mixins/forms.less +5 -1
  38. data/vendor/toolkit/twitter/bootstrap/mixins/grid-framework.less +2 -2
  39. data/vendor/toolkit/twitter/bootstrap/mixins/image.less +0 -1
  40. data/vendor/toolkit/twitter/bootstrap/mixins/labels.less +1 -1
  41. data/vendor/toolkit/twitter/bootstrap/mixins/vendor-prefixes.less +6 -3
  42. data/vendor/toolkit/twitter/bootstrap/modals.less +3 -5
  43. data/vendor/toolkit/twitter/bootstrap/navbar.less +31 -25
  44. data/vendor/toolkit/twitter/bootstrap/navs.less +3 -1
  45. data/vendor/toolkit/twitter/bootstrap/normalize.less +5 -3
  46. data/vendor/toolkit/twitter/bootstrap/pager.less +1 -2
  47. data/vendor/toolkit/twitter/bootstrap/pagination.less +1 -1
  48. data/vendor/toolkit/twitter/bootstrap/panels.less +26 -4
  49. data/vendor/toolkit/twitter/bootstrap/popovers.less +6 -4
  50. data/vendor/toolkit/twitter/bootstrap/print.less +102 -96
  51. data/vendor/toolkit/twitter/bootstrap/progress-bars.less +1 -19
  52. data/vendor/toolkit/twitter/bootstrap/responsive-embed.less +2 -1
  53. data/vendor/toolkit/twitter/bootstrap/scaffolding.less +1 -1
  54. data/vendor/toolkit/twitter/bootstrap/tables.less +14 -13
  55. data/vendor/toolkit/twitter/bootstrap/theme.less +26 -11
  56. data/vendor/toolkit/twitter/bootstrap/thumbnails.less +1 -1
  57. data/vendor/toolkit/twitter/bootstrap/tooltip.less +12 -4
  58. data/vendor/toolkit/twitter/bootstrap/type.less +0 -11
  59. data/vendor/toolkit/twitter/bootstrap/utilities.less +0 -1
  60. data/vendor/toolkit/twitter/bootstrap/variables.less +33 -22
  61. metadata +33 -14
@@ -7,7 +7,6 @@
7
7
 
8
8
 
9
9
 
10
-
11
10
  //
12
11
  // Buttons
13
12
  // --------------------------------------------------
@@ -28,12 +27,16 @@
28
27
  &.active {
29
28
  .box-shadow(inset 0 3px 5px rgba(0,0,0,.125));
30
29
  }
30
+
31
+ .badge {
32
+ text-shadow: none;
33
+ }
31
34
  }
32
35
 
33
36
  // Mixin for generating new styles
34
37
  .btn-styles(@btn-color: #555) {
35
38
  #gradient > .vertical(@start-color: @btn-color; @end-color: darken(@btn-color, 12%));
36
- .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
37
40
  background-repeat: repeat-x;
38
41
  border-color: darken(@btn-color, 14%);
39
42
 
@@ -49,6 +52,7 @@
49
52
  border-color: darken(@btn-color, 14%);
50
53
  }
51
54
 
55
+ &.disabled,
52
56
  &:disabled,
53
57
  &[disabled] {
54
58
  background-color: darken(@btn-color, 12%);
@@ -74,7 +78,6 @@
74
78
  .btn-danger { .btn-styles(@btn-danger-bg); }
75
79
 
76
80
 
77
-
78
81
  //
79
82
  // Images
80
83
  // --------------------------------------------------
@@ -85,7 +88,6 @@
85
88
  }
86
89
 
87
90
 
88
-
89
91
  //
90
92
  // Dropdowns
91
93
  // --------------------------------------------------
@@ -103,7 +105,6 @@
103
105
  }
104
106
 
105
107
 
106
-
107
108
  //
108
109
  // Navbar
109
110
  // --------------------------------------------------
@@ -116,8 +117,9 @@
116
117
  @shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 1px 5px rgba(0,0,0,.075);
117
118
  .box-shadow(@shadow);
118
119
 
120
+ .navbar-nav > .open > a,
119
121
  .navbar-nav > .active > a {
120
- #gradient > .vertical(@start-color: darken(@navbar-default-bg, 5%); @end-color: darken(@navbar-default-bg, 2%));
122
+ #gradient > .vertical(@start-color: darken(@navbar-default-link-active-bg, 5%); @end-color: darken(@navbar-default-link-active-bg, 2%));
121
123
  .box-shadow(inset 0 3px 9px rgba(0,0,0,.075));
122
124
  }
123
125
  }
@@ -129,10 +131,11 @@
129
131
  // Inverted navbar
130
132
  .navbar-inverse {
131
133
  #gradient > .vertical(@start-color: lighten(@navbar-inverse-bg, 10%); @end-color: @navbar-inverse-bg);
132
- .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
133
135
 
136
+ .navbar-nav > .open > a,
134
137
  .navbar-nav > .active > a {
135
- #gradient > .vertical(@start-color: @navbar-inverse-bg; @end-color: lighten(@navbar-inverse-bg, 2.5%));
138
+ #gradient > .vertical(@start-color: @navbar-inverse-link-active-bg; @end-color: lighten(@navbar-inverse-link-active-bg, 2.5%));
136
139
  .box-shadow(inset 0 3px 9px rgba(0,0,0,.25));
137
140
  }
138
141
 
@@ -149,6 +152,17 @@
149
152
  border-radius: 0;
150
153
  }
151
154
 
155
+ // Fix active state of dropdown items in collapsed mode
156
+ @media (max-width: @grid-float-breakpoint-max) {
157
+ .navbar .navbar-nav .open .dropdown-menu > .active > a {
158
+ &,
159
+ &:hover,
160
+ &:focus {
161
+ color: #fff;
162
+ #gradient > .vertical(@start-color: @dropdown-link-active-bg; @end-color: darken(@dropdown-link-active-bg, 5%));
163
+ }
164
+ }
165
+ }
152
166
 
153
167
 
154
168
  //
@@ -175,7 +189,6 @@
175
189
  .alert-danger { .alert-styles(@alert-danger-bg); }
176
190
 
177
191
 
178
-
179
192
  //
180
193
  // Progress bars
181
194
  // --------------------------------------------------
@@ -218,8 +231,11 @@
218
231
  text-shadow: 0 -1px 0 darken(@list-group-active-bg, 10%);
219
232
  #gradient > .vertical(@start-color: @list-group-active-bg; @end-color: darken(@list-group-active-bg, 7.5%));
220
233
  border-color: darken(@list-group-active-border, 7.5%);
221
- }
222
234
 
235
+ .badge {
236
+ text-shadow: none;
237
+ }
238
+ }
223
239
 
224
240
 
225
241
  //
@@ -245,7 +261,6 @@
245
261
  .panel-danger > .panel-heading { .panel-heading-styles(@panel-danger-heading-bg); }
246
262
 
247
263
 
248
-
249
264
  //
250
265
  // Wells
251
266
  // --------------------------------------------------
@@ -12,7 +12,7 @@
12
12
  background-color: @thumbnail-bg;
13
13
  border: 1px solid @thumbnail-border;
14
14
  border-radius: @thumbnail-border-radius;
15
- .transition(all .2s ease-in-out);
15
+ .transition(border .2s ease-in-out);
16
16
 
17
17
  > img,
18
18
  a > img {
@@ -9,7 +9,10 @@
9
9
  z-index: @zindex-tooltip;
10
10
  display: block;
11
11
  visibility: visible;
12
+ // Reset font and text properties given new insertion method
13
+ font-family: @font-family-base;
12
14
  font-size: @font-size-small;
15
+ font-weight: normal;
13
16
  line-height: 1.4;
14
17
  .opacity(0);
15
18
 
@@ -39,6 +42,7 @@
39
42
  border-color: transparent;
40
43
  border-style: solid;
41
44
  }
45
+ // Note: Deprecated .top-left, .top-right, .bottom-left, and .bottom-right as of v3.3.1
42
46
  .tooltip {
43
47
  &.top .tooltip-arrow {
44
48
  bottom: 0;
@@ -49,13 +53,15 @@
49
53
  }
50
54
  &.top-left .tooltip-arrow {
51
55
  bottom: 0;
52
- left: @tooltip-arrow-width;
56
+ right: @tooltip-arrow-width;
57
+ margin-bottom: -@tooltip-arrow-width;
53
58
  border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
54
59
  border-top-color: @tooltip-arrow-color;
55
60
  }
56
61
  &.top-right .tooltip-arrow {
57
62
  bottom: 0;
58
- right: @tooltip-arrow-width;
63
+ left: @tooltip-arrow-width;
64
+ margin-bottom: -@tooltip-arrow-width;
59
65
  border-width: @tooltip-arrow-width @tooltip-arrow-width 0;
60
66
  border-top-color: @tooltip-arrow-color;
61
67
  }
@@ -82,13 +88,15 @@
82
88
  }
83
89
  &.bottom-left .tooltip-arrow {
84
90
  top: 0;
85
- left: @tooltip-arrow-width;
91
+ right: @tooltip-arrow-width;
92
+ margin-top: -@tooltip-arrow-width;
86
93
  border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
87
94
  border-bottom-color: @tooltip-arrow-color;
88
95
  }
89
96
  &.bottom-right .tooltip-arrow {
90
97
  top: 0;
91
- right: @tooltip-arrow-width;
98
+ left: @tooltip-arrow-width;
99
+ margin-top: -@tooltip-arrow-width;
92
100
  border-width: 0 @tooltip-arrow-width @tooltip-arrow-width;
93
101
  border-bottom-color: @tooltip-arrow-color;
94
102
  }
@@ -80,11 +80,6 @@ small,
80
80
  font-size: floor((100% * @font-size-small / @font-size-base));
81
81
  }
82
82
 
83
- // Undo browser default styling
84
- cite {
85
- font-style: normal;
86
- }
87
-
88
83
  mark,
89
84
  .mark {
90
85
  background-color: @state-warning-bg;
@@ -299,12 +294,6 @@ blockquote.pull-right {
299
294
  }
300
295
  }
301
296
 
302
- // Quotes
303
- blockquote:before,
304
- blockquote:after {
305
- content: "";
306
- }
307
-
308
297
  // Addresses
309
298
  address {
310
299
  margin-bottom: @line-height-computed;
@@ -53,5 +53,4 @@
53
53
 
54
54
  .affix {
55
55
  position: fixed;
56
- .translate3d(0, 0, 0);
57
56
  }
@@ -7,13 +7,14 @@
7
7
  //
8
8
  //## Gray and brand colors for use across Bootstrap.
9
9
 
10
- @gray-darker: lighten(#000, 13.5%); // #222
11
- @gray-dark: lighten(#000, 20%); // #333
12
- @gray: lighten(#000, 33.5%); // #555
13
- @gray-light: lighten(#000, 46.7%); // #777
14
- @gray-lighter: lighten(#000, 93.5%); // #eee
15
-
16
- @brand-primary: #428bca;
10
+ @gray-base: #000;
11
+ @gray-darker: lighten(@gray-base, 13.5%); // #222
12
+ @gray-dark: lighten(@gray-base, 20%); // #333
13
+ @gray: lighten(@gray-base, 33.5%); // #555
14
+ @gray-light: lighten(@gray-base, 46.7%); // #777
15
+ @gray-lighter: lighten(@gray-base, 93.5%); // #eee
16
+
17
+ @brand-primary: darken(#428bca, 6.5%); // #337ab7
17
18
  @brand-success: #5cb85c;
18
19
  @brand-info: #5bc0de;
19
20
  @brand-warning: #f0ad4e;
@@ -33,6 +34,8 @@
33
34
  @link-color: @brand-primary;
34
35
  //** Link hover color set via `darken()` function.
35
36
  @link-hover-color: darken(@link-color, 15%);
37
+ //** Link hover decoration.
38
+ @link-hover-decoration: underline;
36
39
 
37
40
 
38
41
  //== Typography
@@ -96,7 +99,7 @@
96
99
  @padding-xs-vertical: 1px;
97
100
  @padding-xs-horizontal: 5px;
98
101
 
99
- @line-height-large: 1.33;
102
+ @line-height-large: 1.3333333; // extra decimals for Win 8.1 Chrome
100
103
  @line-height-small: 1.5;
101
104
 
102
105
  @border-radius-base: 4px;
@@ -181,13 +184,21 @@
181
184
  @input-color: @gray;
182
185
  //** `<input>` border color
183
186
  @input-border: #ccc;
184
- //** `<input>` border radius
187
+
188
+ // TODO: Rename `@input-border-radius` to `@input-border-radius-base` in v4
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.
185
191
  @input-border-radius: @border-radius-base;
192
+ //** Large `.form-control` border radius
193
+ @input-border-radius-large: @border-radius-large;
194
+ //** Small `.form-control` border radius
195
+ @input-border-radius-small: @border-radius-small;
196
+
186
197
  //** Border color for inputs on focus
187
198
  @input-border-focus: #66afe9;
188
199
 
189
200
  //** Placeholder text color
190
- @input-color-placeholder: @gray-light;
201
+ @input-color-placeholder: #999;
191
202
 
192
203
  //** Default `.form-control` height
193
204
  @input-height-base: (@line-height-computed + (@padding-base-vertical * 2) + 2);
@@ -204,6 +215,9 @@
204
215
  //** Border color for textual input addons
205
216
  @input-group-addon-border-color: @input-border;
206
217
 
218
+ //** Disabled cursor for form controls and buttons.
219
+ @cursor-disabled: not-allowed;
220
+
207
221
 
208
222
  //== Dropdowns
209
223
  //
@@ -252,8 +266,7 @@
252
266
  @zindex-popover: 1060;
253
267
  @zindex-tooltip: 1070;
254
268
  @zindex-navbar-fixed: 1030;
255
- @zindex-modal-background: 1040;
256
- @zindex-modal: 1050;
269
+ @zindex-modal: 1040;
257
270
 
258
271
 
259
272
  //== Media queries breakpoints
@@ -315,17 +328,17 @@
315
328
  //## Define the maximum width of `.container` for different screen sizes.
316
329
 
317
330
  // Small screen / tablet
318
- @container-tablet: ((720px + @grid-gutter-width));
331
+ @container-tablet: (720px + @grid-gutter-width);
319
332
  //** For `@screen-sm-min` and up.
320
333
  @container-sm: @container-tablet;
321
334
 
322
335
  // Medium screen / desktop
323
- @container-desktop: ((940px + @grid-gutter-width));
336
+ @container-desktop: (940px + @grid-gutter-width);
324
337
  //** For `@screen-md-min` and up.
325
338
  @container-md: @container-desktop;
326
339
 
327
340
  // Large screen / wide desktop
328
- @container-large-desktop: ((1140px + @grid-gutter-width));
341
+ @container-large-desktop: (1140px + @grid-gutter-width);
329
342
  //** For `@screen-lg-min` and up.
330
343
  @container-lg: @container-large-desktop;
331
344
 
@@ -368,12 +381,12 @@
368
381
 
369
382
  // Inverted navbar
370
383
  // Reset inverted navbar basics
371
- @navbar-inverse-color: @gray-light;
384
+ @navbar-inverse-color: lighten(@gray-light, 15%);
372
385
  @navbar-inverse-bg: #222;
373
386
  @navbar-inverse-border: darken(@navbar-inverse-bg, 10%);
374
387
 
375
388
  // Inverted navbar links
376
- @navbar-inverse-link-color: @gray-light;
389
+ @navbar-inverse-link-color: lighten(@gray-light, 15%);
377
390
  @navbar-inverse-link-hover-color: #fff;
378
391
  @navbar-inverse-link-hover-bg: transparent;
379
392
  @navbar-inverse-link-active-color: @navbar-inverse-link-hover-color;
@@ -403,8 +416,6 @@
403
416
  @nav-disabled-link-color: @gray-light;
404
417
  @nav-disabled-link-hover-color: @gray-light;
405
418
 
406
- @nav-open-link-hover-color: #fff;
407
-
408
419
  //== Tabs
409
420
  @nav-tabs-border-color: #ddd;
410
421
 
@@ -529,7 +540,7 @@
529
540
  //** Popover arrow width
530
541
  @popover-arrow-width: 10px;
531
542
  //** Popover arrow color
532
- @popover-arrow-color: #fff;
543
+ @popover-arrow-color: @popover-bg;
533
544
 
534
545
  //** Popover outer arrow width
535
546
  @popover-arrow-outer-width: (@popover-arrow-width + 1);
@@ -628,6 +639,8 @@
628
639
  @progress-bg: #f5f5f5;
629
640
  //** Progress bar text color
630
641
  @progress-bar-color: #fff;
642
+ //** Variable for setting rounded corners on progress bar.
643
+ @progress-border-radius: @border-radius-base;
631
644
 
632
645
  //** Default progress bar color
633
646
  @progress-bar-bg: @brand-primary;
@@ -842,5 +855,3 @@
842
855
  @dl-horizontal-offset: @component-offset-horizontal;
843
856
  //** Horizontal line color.
844
857
  @hr-border: @gray-lighter;
845
-
846
-
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: twitter-bootswatch-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0.0
4
+ version: 3.3.2.0
5
5
  platform: ruby
6
6
  authors:
7
- - Scott V. Rosenthal
7
+ - scottvrosenthal
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-06-27 00:00:00.000000000 Z
11
+ date: 2015-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: railties
@@ -17,6 +17,9 @@ dependencies:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.1'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -24,34 +27,37 @@ dependencies:
24
27
  - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '3.1'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: less-rails
29
35
  requirement: !ruby/object:Gem::Requirement
30
36
  requirements:
31
- - - ">="
37
+ - - "~>"
32
38
  - !ruby/object:Gem::Version
33
- version: '2.3'
39
+ version: '2.4'
34
40
  type: :runtime
35
41
  prerelease: false
36
42
  version_requirements: !ruby/object:Gem::Requirement
37
43
  requirements:
38
- - - ">="
44
+ - - "~>"
39
45
  - !ruby/object:Gem::Version
40
- version: '2.3'
46
+ version: '2.4'
41
47
  - !ruby/object:Gem::Dependency
42
48
  name: execjs
43
49
  requirement: !ruby/object:Gem::Requirement
44
50
  requirements:
45
- - - ">="
51
+ - - "~>"
46
52
  - !ruby/object:Gem::Version
47
- version: 1.4.0
53
+ version: '2.3'
48
54
  type: :runtime
49
55
  prerelease: false
50
56
  version_requirements: !ruby/object:Gem::Requirement
51
57
  requirements:
52
- - - ">="
58
+ - - "~>"
53
59
  - !ruby/object:Gem::Version
54
- version: 1.4.0
60
+ version: '2.3'
55
61
  - !ruby/object:Gem::Dependency
56
62
  name: rails
57
63
  requirement: !ruby/object:Gem::Requirement
@@ -59,6 +65,9 @@ dependencies:
59
65
  - - ">="
60
66
  - !ruby/object:Gem::Version
61
67
  version: '3.1'
68
+ - - "<"
69
+ - !ruby/object:Gem::Version
70
+ version: '5.0'
62
71
  type: :development
63
72
  prerelease: false
64
73
  version_requirements: !ruby/object:Gem::Requirement
@@ -66,20 +75,29 @@ dependencies:
66
75
  - - ">="
67
76
  - !ruby/object:Gem::Version
68
77
  version: '3.1'
78
+ - - "<"
79
+ - !ruby/object:Gem::Version
80
+ version: '5.0'
69
81
  - !ruby/object:Gem::Dependency
70
82
  name: therubyracer
71
83
  requirement: !ruby/object:Gem::Requirement
72
84
  requirements:
85
+ - - "~>"
86
+ - !ruby/object:Gem::Version
87
+ version: '0.12'
73
88
  - - ">="
74
89
  - !ruby/object:Gem::Version
75
- version: 0.11.1
90
+ version: 0.12.1
76
91
  type: :development
77
92
  prerelease: false
78
93
  version_requirements: !ruby/object:Gem::Requirement
79
94
  requirements:
95
+ - - "~>"
96
+ - !ruby/object:Gem::Version
97
+ version: '0.12'
80
98
  - - ">="
81
99
  - !ruby/object:Gem::Version
82
- version: 0.11.1
100
+ version: 0.12.1
83
101
  description: twitter-bootswatch-rails gem integrates TWBS Bootstrap for Rails Asset
84
102
  Pipeline with less-rails
85
103
  email:
@@ -92,6 +110,7 @@ files:
92
110
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.svg
93
111
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.ttf
94
112
  - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff
113
+ - app/assets/fonts/twitter/bootstrap/glyphicons-halflings-regular.woff2
95
114
  - app/assets/javascripts/twitter/bootstrap/affix.js
96
115
  - app/assets/javascripts/twitter/bootstrap/alert.js
97
116
  - app/assets/javascripts/twitter/bootstrap/button.js
@@ -236,7 +255,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
236
255
  version: 1.8.11
237
256
  requirements: []
238
257
  rubyforge_project:
239
- rubygems_version: 2.2.2
258
+ rubygems_version: 2.4.1
240
259
  signing_key:
241
260
  specification_version: 4
242
261
  summary: TWBS Bootstrap integration gem for the Rails Asset Pipeline using less-rails