toolkit 1.2.2 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA512:
3
+ metadata.gz: 874d528939e96fb518f2e722c254a62b38418201c24747190e452db606c887e57b17a2d852554845d4801b55d099046814f863c6423103856f3698daaeb875ec
4
+ data.tar.gz: 7186760b55d3a1c78b5d8c233d1b7b965f7a4c9b63804a062ca658d68968b1d65dc0403f989c2b05ce4ca67bbfd6f0771344cf3244f2c57ce5fcd6ef93189b00
5
+ SHA1:
6
+ metadata.gz: a4d4a5e9259d8b9d39f39454f0f1137d6f6d036a
7
+ data.tar.gz: a150f35d5387959b35fab26306569d4e525383b8
@@ -0,0 +1,140 @@
1
+ //////////////////////////////
2
+ // Import Compass CSS3 Animation
3
+ //////////////////////////////
4
+ @import "compass/css3/animation";
5
+
6
+ //////////////////////////////
7
+ // Carousel Default Variables
8
+ //////////////////////////////
9
+ $css-carousel-list: '> ul';
10
+ $css-carousel-animation: 'carousel';
11
+ $css-carousel-duration: 30s;
12
+ $css-carousel-extend: true;
13
+
14
+ $css-carousel-action: 'reverse';
15
+ $css-carousel-speed: 5;
16
+
17
+ //////////////////////////////
18
+ // Carousel Component
19
+ //////////////////////////////
20
+ // Carousel Basics
21
+ @mixin css-carousel-basics($extend: $css-carousel-extend) {
22
+ @if $extend {
23
+ @extend %css-carousel-basics;
24
+ }
25
+ @else {
26
+ overflow: hidden;
27
+ width: 100%;
28
+
29
+ img {
30
+ display: block;
31
+ width: 100%;
32
+ max-width: 100%;
33
+ height: auto;
34
+ }
35
+ }
36
+ }
37
+
38
+ // Carousel List
39
+ @mixin css-carousel-list($extend: $css-carousel-extend) {
40
+ @if $extend {
41
+ @extend %css-carousel-list;
42
+ }
43
+ @else {
44
+ list-style: none;
45
+ margin: 0;
46
+ padding: 0;
47
+ position: relative;
48
+ overflow: hidden;
49
+
50
+ > li {
51
+ position:relative;
52
+ float:left;
53
+ }
54
+ }
55
+ }
56
+
57
+ // List sizing, for changing only the size of the carousel
58
+ @mixin css-carousel-size($items, $list: $css-carousel-list) {
59
+ #{$list} {
60
+ width: 100% * $items;
61
+
62
+ > li {
63
+ width: 100% / $items;
64
+ }
65
+ }
66
+ }
67
+
68
+ // Animation wrapped in list
69
+ @mixin css-carousel-list-animation($animation: $css-carousel-animation, $duration: $css-carousel-duration, $list: $css-carousel-list) {
70
+ #{$list} {
71
+ @include animation($animation $duration infinite);
72
+ }
73
+ }
74
+
75
+ // Carousel Component
76
+ @mixin css-carousel-component($items, $list: $css-carousel-list, $animation: $css-carousel-animation, $duration: $css-carousel-duration, $extend: $css-carousel-extend) {
77
+
78
+ @include css-carousel-basics($extend);
79
+
80
+ @include css-carousel-size($items, $list);
81
+
82
+ #{$list} {
83
+ @include css-carousel-list($extend);
84
+ }
85
+
86
+ @include css-carousel-list-animation($animation, $duration, $list);
87
+ }
88
+
89
+ // Carousel Extends
90
+ %css-carousel-basics {
91
+ @include css-carousel-basics(false);
92
+ }
93
+
94
+ %css-carousel-list {
95
+ @include css-carousel-list(false);
96
+ }
97
+
98
+ //////////////////////////////
99
+ // Carousel Animation
100
+ //////////////////////////////
101
+ @mixin css-carousel-animation($items, $action: $css-carousel-action, $speed: $css-carousel-speed, $name: $css-carousel-animation) {
102
+ $increment: 0;
103
+
104
+ @if $action == 'reverse' {
105
+ $increment: 100 / (2 * ($items - 1)) * 1%;
106
+ }
107
+ @else if $action == 'start' {
108
+ $increment: 100 / (($items)) * 1%;
109
+ }
110
+
111
+ $speed: $increment - ($speed * 1%);
112
+
113
+ $counter: 0%;
114
+ $offset: 0;
115
+
116
+ @include keyframes($name) {
117
+ @for $i from 0 through $items - 1 {
118
+ $counter: $increment * $i;
119
+ $offset: -100% * $i;
120
+
121
+ #{$counter} {left: $offset}
122
+ #{$counter + $speed} {left: $offset};
123
+ }
124
+ @if $action == 'reverse' {
125
+ @for $i from -1 * ($items - 2) through 0 {
126
+ $counter: $counter + $increment;
127
+ $offset: -100% * abs($i);
128
+
129
+ #{$counter} {left: $offset}
130
+
131
+ @if $i != 0 {
132
+ #{$counter + $speed} {left: $offset};
133
+ }
134
+ }
135
+ }
136
+ @else if $action == 'start' {
137
+ 100% {left: 0};
138
+ }
139
+ }
140
+ }
@@ -1,65 +1,3 @@
1
- //////////////////////////////
2
- // Legacy Clearfix
3
- //
4
- // For when you need full Legacy support, including old IE and old Firefox
5
- //
6
- // From http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
7
- //////////////////////////////
8
- %clearfix-legacy {
9
- /* for IE 6/7 */
10
- *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createElement("br")).style.cssText="clear:both;font:0/0 serif");
11
- /* non-JS fallback */
12
- *zoom: 1;
13
-
14
- &:before,
15
- &:after {
16
- content: ".";
17
- display: block;
18
- height: 0;
19
- overflow: hidden;
20
- }
21
-
22
- &:after {
23
- clear: both;
24
- }
25
- }
26
-
27
- //////////////////////////////
28
- // Micro Clearfix
29
- //
30
- // For when you need old IE support, but not concerned with old Firefox
31
- // From http://nicolasgallagher.com/better-float-containment-in-ie/
32
- //////////////////////////////
33
- %clearfix-micro {
34
- /* for IE 6/7 */
35
- *zoom: expression(this.runtimeStyle.zoom="1", this.appendChild(document.createElement("br")).style.cssText="clear:both;font:0/0 serif");
36
- /* non-JS fallback */
37
- *zoom: 1;
38
-
39
- &:before,
40
- &:after {
41
- content: "";
42
- display: table;
43
- }
44
-
45
- &:after {
46
- clear: both;
47
- }
48
- }
49
-
50
- //////////////////////////////
51
- // Modern Clearfix
52
- //
53
- // Clearfix for modern browsers, especiall when using border-box
54
- //
55
- // From http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
56
- //////////////////////////////
57
- %clearfix:after {
58
- content: "";
59
- display: table;
60
- clear: both;
61
- }
62
-
63
1
  //////////////////////////////
64
2
  // Massive Clearfix Mixin
65
3
  //
@@ -67,10 +5,10 @@
67
5
  // Can choose whether to extend or to write.
68
6
  //////////////////////////////
69
7
  $clearfix-extend: false !default;
70
- $legacy-support-for-mozilla: true !default;
8
+ $clearfix-direct: false !default;
71
9
 
72
- @mixin clearfix($extend: $clearfix-extend) {
73
- @if $legacy-support-for-ie6 and $legacy-support-for-ie7 and not $legacy-support-for-mozilla {
10
+ @mixin clearfix($extend: $clearfix-extend, $direct: $clearfix-direct) {
11
+ @if (($legacy-support-for-ie6 or $legacy-support-for-ie7) and not $legacy-support-for-mozilla and $direct != 'legacy' and $direct != 'modern') or ($direct == 'micro') {
74
12
  @if $extend {
75
13
  @extend %clearfix-micro;
76
14
  }
@@ -91,7 +29,7 @@ $legacy-support-for-mozilla: true !default;
91
29
  }
92
30
  }
93
31
  }
94
- @else if $legacy-support-for-ie6 and $legacy-support-for-ie7 and $legacy-support-for-mozilla {
32
+ @else if (($legacy-support-for-ie6 or $legacy-support-for-ie7) and $legacy-support-for-mozilla and $direct != 'micro' and $direct != 'modern') or ($direct == 'legacy') {
95
33
  @if $extend {
96
34
  @extend %clearfix-legacy;
97
35
  }
@@ -126,4 +64,36 @@ $legacy-support-for-mozilla: true !default;
126
64
  }
127
65
  }
128
66
  }
67
+ }
68
+
69
+ //////////////////////////////
70
+ // Legacy Clearfix
71
+ //
72
+ // For when you need full Legacy support, including old IE and old Firefox
73
+ //
74
+ // From http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
75
+ //////////////////////////////
76
+ %clearfix-legacy {
77
+ @include clearfix(false, 'legacy');
78
+ }
79
+
80
+ //////////////////////////////
81
+ // Micro Clearfix
82
+ //
83
+ // For when you need old IE support, but not concerned with old Firefox
84
+ // From http://nicolasgallagher.com/better-float-containment-in-ie/
85
+ //////////////////////////////
86
+ %clearfix-micro {
87
+ @include clearfix(false, 'micro');
88
+ }
89
+
90
+ //////////////////////////////
91
+ // Modern Clearfix
92
+ //
93
+ // Clearfix for modern browsers, especiall when using border-box
94
+ //
95
+ // From http://www.css-101.org/articles/clearfix/latest-new-clearfix-so-far.php
96
+ //////////////////////////////
97
+ %clearfix:after {
98
+ @include clearfix(false, 'modern');
129
99
  }
@@ -12,10 +12,13 @@
12
12
  @return mix(#000, $colour, $amount);
13
13
  }
14
14
 
15
+ $color-stack-amounts: 25%, 50%, 75%, 85%, 90% !default;
16
+ $colour-stack-amounts: $color-stack-amounts !default;
17
+
15
18
  // Create a colour stack using the given colours and tints
16
19
  @function colour-stack($main, $secondary, $amounts...) {
17
20
  @if length($amounts) == 0 {
18
- $amounts: 25%, 50%, 75%, 85%, 90%;
21
+ $amounts: $colour-stack-amounts;
19
22
  }
20
23
  @else if length($amounts) == 1 {
21
24
  $amounts: nth($amounts, 1);
@@ -55,4 +58,45 @@
55
58
  @else {
56
59
  @return colour-stack($colour, #000);
57
60
  }
61
+ }
62
+
63
+ //////////////////////////////
64
+ // Creates an even scale from one color to another
65
+ //////////////////////////////
66
+ $color-scale-shades: 6 !default;
67
+ $colour-scale-shades: $color-scale-shades !default;
68
+
69
+ @function colour-scale($main, $secondary, $shades: $colour-scale-shades) {
70
+ @return color-scale($main, $secondary, $shades);
71
+ }
72
+
73
+ @function color-scale($main, $secondary, $shades: $color-scale-shades) {
74
+ $list: $main;
75
+
76
+
77
+ $red1: red($main);
78
+ $red2: red($secondary);
79
+ $red-diff: (($red1 - $red2) / (($shades - 1)));
80
+
81
+ $grn1: green($main);
82
+ $grn2: green($secondary);
83
+ $grn-diff: (($grn1 - $grn2) / (($shades - 1)));
84
+
85
+ $blu1: blue($main);
86
+ $blu2: blue($secondary);
87
+ $blu-diff: (($blu1 - $blu2) / (($shades - 1)));
88
+
89
+ $red-hold: $red1;
90
+ $grn-hold: $grn1;
91
+ $blu-hold: $blu1;
92
+
93
+ @for $i from 2 through $shades {
94
+ $red-hold: $red-hold - ($red-diff);
95
+ $grn-hold: $grn-hold - ($grn-diff);
96
+ $blu-hold: $blu-hold - ($blu-diff);
97
+ $color-hold: rgb($red-hold, $grn-hold, $blu-hold);
98
+ $list: append($list, $color-hold);
99
+ }
100
+
101
+ @return $list;
58
102
  }
@@ -7,38 +7,46 @@ $intrinsic-ratio-elements: '> *' !default;
7
7
  $intrinsic-ratio-extend: true !default;
8
8
  $intrinsic-ratio-direction: top !default;
9
9
 
10
- @mixin intrinsic-ratio-parent {
11
- position: relative;
12
- height: 0;
13
- }
14
-
15
- @mixin intrinsic-ratio-child {
16
- display: block;
17
- position: absolute;
18
- width: 100% !important; // Nuke the external styles
19
- height: 100% !important; // Nuke the external styles
20
- top: 0;
21
- margin: 0;
22
- padding: 0;
10
+ @mixin intrinsic-ratio-parent($extend: $intrinsic-ratio-extend) {
11
+ @if $extend {
12
+ @extend %intrinsic-ratio-parent;
13
+ }
14
+ @else {
15
+ position: relative;
16
+ height: 0;
17
+ }
23
18
  }
24
19
 
25
- @mixin intrinsic-ratio($ratio: $intrinsic-ratio, $width: $intrinsic-ratio-width, $elements: $intrinsic-ratio-elements, $extend: $intrinsic-ratio-extend, $direction: $intrinsic-ratio-direction) {
26
- @if not $extend {
27
- @include intrinsic-ratio-parent;
20
+ @mixin intrinsic-ratio-child($extend: $intrinsic-ratio-extend) {
21
+ @if $extend {
22
+ @extend %intrinsic-ratio-child;
28
23
  }
29
24
  @else {
30
- @extend %intrinsic-ratio-parent;
25
+ display: block;
26
+ position: absolute;
27
+ width: 100% !important; // Nuke the external styles
28
+ height: 100% !important; // Nuke the external styles
29
+ top: 0;
30
+ margin: 0;
31
+ padding: 0;
31
32
  }
33
+ }
34
+
35
+ @mixin intrinsic-ratio-ratio($ratio: $intrinsic-ratio, $width: $intrinsic-ratio-width, $direction: $intrinsic-ratio-direction) {
32
36
  padding-#{$direction}: (1 / $ratio) * $width;
37
+ }
38
+
39
+ @mixin intrinsic-ratio($ratio: $intrinsic-ratio, $width: $intrinsic-ratio-width, $elements: $intrinsic-ratio-elements, $extend: $intrinsic-ratio-extend, $direction: $intrinsic-ratio-direction) {
40
+
41
+ @include intrinsic-ratio-ratio($extend);
42
+
43
+ @include intrinsic-ratio-padding($ratio, $width, $direction);
33
44
  width: $width;
45
+
46
+
34
47
  @each $element in $elements {
35
48
  #{$element} {
36
- @if not $extend {
37
- @include intrinsic-ratio-child;
38
- }
39
- @else {
40
- @extend %intrinsic-ratio-child;
41
- }
49
+ @include intrinsic-ratio-child($extend);
42
50
  }
43
51
  }
44
52
  }
@@ -48,9 +56,9 @@ $intrinsic-ratio-direction: top !default;
48
56
  }
49
57
 
50
58
  %intrinsic-ratio-parent {
51
- @include intrinsic-ratio-parent;
59
+ @include intrinsic-ratio-parent(false);
52
60
  }
53
61
 
54
62
  %intrinsic-ratio-child {
55
- @include intrinsic-ratio-child;
63
+ @include intrinsic-ratio-child(false);
56
64
  }
@@ -153,7 +153,7 @@ $replace-text-inline-element: false !default;
153
153
  }
154
154
  @include sprite($sprite-map, $sprite);
155
155
  }
156
- @media (min-resolution: 1.5dppx), (-webkit-max-device-pixel-ratio: 1.5), (max--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
156
+ @media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
157
157
  background: {
158
158
  image: $retina-map;
159
159
  repeat: no-repeat;
@@ -206,7 +206,7 @@ $replace-text-inline-element: false !default;
206
206
  }
207
207
  }
208
208
 
209
- @media (-webkit-max-device-pixel-ratio: 1.4), (max--moz-device-pixel-ratio: 1.4), (-o-max-device-pixel-ratio: 7/5), (min-resolution: 1.4dppx), (min-resolution: 134.4dpi) {
209
+ @media (max-resolution: 1.4dppx), (-webkit-max-device-pixel-ratio: 1.4), (max--moz-device-pixel-ratio: 1.4), (max-resolution: 134.4dpi) {
210
210
  %#{sprite-map-name($png-path)}-image-map {
211
211
  background: {
212
212
  image: $png-path;
@@ -214,7 +214,7 @@ $replace-text-inline-element: false !default;
214
214
  }
215
215
  }
216
216
  }
217
- @media (-webkit-max-device-pixel-ratio: 1.5), (max--moz-device-pixel-ratio: 1.5), (-o-max-device-pixel-ratio: 3/2), (min-resolution: 1.5dppx), (min-resolution: 144dpi) {
217
+ @media (min-resolution: 1.5dppx), (-webkit-min-device-pixel-ratio: 1.5), (min--moz-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
218
218
  %#{sprite-map-name($png2x-path)}-image-map {
219
219
  background: {
220
220
  image: $png2x-path;
metadata CHANGED
@@ -1,112 +1,86 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: toolkit
3
- version: !ruby/object:Gem::Version
4
- version: 1.2.2
5
- prerelease:
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.3.0
6
5
  platform: ruby
7
- authors:
6
+ authors:
8
7
  - Sam Richard
9
8
  - Scott Kellum
10
9
  - Mason Wendell
11
10
  autorequire:
12
11
  bindir: bin
13
12
  cert_chain: []
14
- date: 2013-05-18 00:00:00.000000000 Z
15
- dependencies:
16
- - !ruby/object:Gem::Dependency
13
+
14
+ date: 2013-07-10 00:00:00 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
17
  name: compass
18
- requirement: !ruby/object:Gem::Requirement
19
- none: false
20
- requirements:
21
- - - ! '>='
22
- - !ruby/object:Gem::Version
23
- version: 0.12.2
24
- type: :runtime
25
18
  prerelease: false
26
- version_requirements: !ruby/object:Gem::Requirement
27
- none: false
28
- requirements:
29
- - - ! '>='
30
- - !ruby/object:Gem::Version
19
+ requirement: &id001 !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
31
23
  version: 0.12.2
32
- - !ruby/object:Gem::Dependency
33
- name: singularitygs
34
- requirement: !ruby/object:Gem::Requirement
35
- none: false
36
- requirements:
37
- - - ! '>='
38
- - !ruby/object:Gem::Version
39
- version: 1.0.7
40
24
  type: :runtime
25
+ version_requirements: *id001
26
+ - !ruby/object:Gem::Dependency
27
+ name: singularitygs
41
28
  prerelease: false
42
- version_requirements: !ruby/object:Gem::Requirement
43
- none: false
44
- requirements:
45
- - - ! '>='
46
- - !ruby/object:Gem::Version
29
+ requirement: &id002 !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
47
33
  version: 1.0.7
48
- - !ruby/object:Gem::Dependency
49
- name: breakpoint
50
- requirement: !ruby/object:Gem::Requirement
51
- none: false
52
- requirements:
53
- - - ! '>='
54
- - !ruby/object:Gem::Version
55
- version: 2.0.2
56
34
  type: :runtime
35
+ version_requirements: *id002
36
+ - !ruby/object:Gem::Dependency
37
+ name: breakpoint
57
38
  prerelease: false
58
- version_requirements: !ruby/object:Gem::Requirement
59
- none: false
60
- requirements:
61
- - - ! '>='
62
- - !ruby/object:Gem::Version
39
+ requirement: &id003 !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
63
43
  version: 2.0.2
64
- - !ruby/object:Gem::Dependency
65
- name: sassy-strings
66
- requirement: !ruby/object:Gem::Requirement
67
- none: false
68
- requirements:
69
- - - ! '>='
70
- - !ruby/object:Gem::Version
71
- version: '0.1'
72
44
  type: :runtime
45
+ version_requirements: *id003
46
+ - !ruby/object:Gem::Dependency
47
+ name: sassy-strings
73
48
  prerelease: false
74
- version_requirements: !ruby/object:Gem::Requirement
75
- none: false
76
- requirements:
77
- - - ! '>='
78
- - !ruby/object:Gem::Version
79
- version: '0.1'
80
- - !ruby/object:Gem::Dependency
81
- name: color-schemer
82
- requirement: !ruby/object:Gem::Requirement
83
- none: false
84
- requirements:
85
- - - ! '>='
86
- - !ruby/object:Gem::Version
87
- version: 0.2.3
49
+ requirement: &id004 !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: "0.1"
88
54
  type: :runtime
55
+ version_requirements: *id004
56
+ - !ruby/object:Gem::Dependency
57
+ name: color-schemer
89
58
  prerelease: false
90
- version_requirements: !ruby/object:Gem::Requirement
91
- none: false
92
- requirements:
93
- - - ! '>='
94
- - !ruby/object:Gem::Version
59
+ requirement: &id005 !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
95
63
  version: 0.2.3
64
+ type: :runtime
65
+ version_requirements: *id005
96
66
  description: Toolkit for Progressive Enhancement and Responsive Web Design
97
- email:
67
+ email:
98
68
  - sam@snug.ug
99
69
  - scott@scottkellum.com
100
70
  - mason@zivtech.com
101
71
  executables: []
72
+
102
73
  extensions: []
74
+
103
75
  extra_rdoc_files: []
104
- files:
76
+
77
+ files:
105
78
  - lib/toolkit.rb
106
79
  - stylesheets/_toolkit-no-css.scss
107
80
  - stylesheets/_toolkit.scss
108
81
  - stylesheets/toolkit/_border-box.scss
109
82
  - stylesheets/toolkit/_box-sizing.scss
83
+ - stylesheets/toolkit/_carousel.scss
110
84
  - stylesheets/toolkit/_children-of-ie.scss
111
85
  - stylesheets/toolkit/_clearfix.scss
112
86
  - stylesheets/toolkit/_colors.scss
@@ -144,29 +118,32 @@ files:
144
118
  - templates/shared/style.scss
145
119
  - LICENSE.txt
146
120
  homepage: https://github.com/Snugug/toolkit
147
- licenses:
121
+ licenses:
148
122
  - MIT
149
123
  - GPL
124
+ metadata: {}
125
+
150
126
  post_install_message:
151
127
  rdoc_options: []
152
- require_paths:
128
+
129
+ require_paths:
153
130
  - lib
154
- required_ruby_version: !ruby/object:Gem::Requirement
155
- none: false
156
- requirements:
157
- - - ! '>='
158
- - !ruby/object:Gem::Version
159
- version: '0'
160
- required_rubygems_version: !ruby/object:Gem::Requirement
161
- none: false
162
- requirements:
163
- - - ! '>='
164
- - !ruby/object:Gem::Version
165
- version: '1.2'
131
+ required_ruby_version: !ruby/object:Gem::Requirement
132
+ requirements:
133
+ - - ">="
134
+ - !ruby/object:Gem::Version
135
+ version: "0"
136
+ required_rubygems_version: !ruby/object:Gem::Requirement
137
+ requirements:
138
+ - - ">="
139
+ - !ruby/object:Gem::Version
140
+ version: "1.2"
166
141
  requirements: []
142
+
167
143
  rubyforge_project: toolkit
168
- rubygems_version: 1.8.25
144
+ rubygems_version: 2.0.3
169
145
  signing_key:
170
- specification_version: 3
146
+ specification_version: 4
171
147
  summary: Progressive Enhancement and RWD toolkit of awesomeness
172
148
  test_files: []
149
+