compass-normalize-plugin 0.4.1 → 0.4.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 8bd1606f1162f9b6df9ccc3e16be15edac16cffb
4
+ data.tar.gz: 1c89c3caf3170f523bc2f52ec6f8b58957d332a8
5
+ SHA512:
6
+ metadata.gz: f4d9fe6216918fd6fb3c5895358277765b964e6a4b7844a30899daf59cc028ecd1e99158267b859ed2de570aa006e0b854ad4a61d6ffeaefa781d9ff5cb240d5
7
+ data.tar.gz: b0178de5d353b32f7f5b6291febbd111e53e990c81eab2aa66c85469e8a1e99c75522bb15bc77c555dbeb34c361ff166464c0b5f0ed02cebea03869b8405f47a
@@ -1,3 +1,8 @@
1
+ [v.0.4.2] [Nov 20 2013]
2
+ - - - - - - - - - - -
3
+
4
+ - Synced with Normalize.css version 2.1.3
5
+
1
6
  [v.0.4.1] [Apr 3 2013]
2
7
  - - - - - - - - - - -
3
8
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.1
1
+ 0.4.2
@@ -1,11 +1,11 @@
1
1
  # -*- encoding: utf-8 -*-
2
2
 
3
3
  Gem::Specification.new do |s|
4
- s.version = "0.4.1"
4
+ s.version = "0.4.2"
5
5
  s.date = %q{2012-09-10}
6
6
 
7
7
  s.name = %q{compass-normalize-plugin}
8
- s.authors = ["Johannes Roettger", "Nicolas Gallagher", "Jonathan Neal", "'Ley Missailidis" ]
8
+ s.authors = ["Johannes Zorn", "Nicolas Gallagher", "Jonathan Neal", "'Ley Missailidis" ]
9
9
  s.summary = %q{Makes browsers render HTML elements consistently and in line with modern standards.}
10
10
  s.description = %q{This is a normalize.css extension for the Compass framework.}
11
11
  s.email = %q{johannes@zorn.in}
@@ -8,12 +8,13 @@
8
8
  @import "normalize/tables";
9
9
 
10
10
  @mixin normalize {
11
- @include normalize-html5;
12
- @include normalize-base;
13
- @include normalize-links;
14
- @include normalize-typography;
15
- @include normalize-embedded;
16
- @include normalize-figures;
17
- @include normalize-forms;
18
- @include normalize-tables;
11
+ /*! normalize.css v2.1.3 | MIT License | git.io/normalize */
12
+ @include normalize-html5;
13
+ @include normalize-base;
14
+ @include normalize-links;
15
+ @include normalize-typography;
16
+ @include normalize-embedded;
17
+ @include normalize-figures;
18
+ @include normalize-forms;
19
+ @include normalize-tables;
19
20
  }
@@ -1,24 +1,26 @@
1
1
  @mixin normalize-base {
2
- html {
3
- // Set default font family to sans-serif.
4
- font-family: sans-serif;
5
2
 
6
- // Prevents iOS text size adjust after orientation change, without disabling user zoom
7
- -webkit-text-size-adjust: 100%;
8
- -ms-text-size-adjust: 100%;
9
- }
3
+ /* ==========================================================================
4
+ Base
5
+ ========================================================================== */
10
6
 
11
- // Addresses font-family inconsistency between `textarea` and other form elements.
12
- html,
13
- button,
14
- input,
15
- select,
16
- textarea {
17
- font-family: sans-serif;
18
- }
7
+ /**
8
+ * 1. Set default font family to sans-serif.
9
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
10
+ * user zoom.
11
+ */
19
12
 
20
- // Remove default margin.
21
- body {
22
- margin: 0;
23
- }
13
+ html {
14
+ font-family: sans-serif; /* 1 */
15
+ -ms-text-size-adjust: 100%; /* 2 */
16
+ -webkit-text-size-adjust: 100%; /* 2 */
17
+ }
18
+
19
+ /**
20
+ * Remove default margin.
21
+ */
22
+
23
+ body {
24
+ margin: 0;
25
+ }
24
26
  }
@@ -1,11 +1,22 @@
1
1
  @mixin normalize-embedded {
2
- img {
3
- // Remove border when inside `a` element in IE 8/9.
4
- border: 0;
5
- }
6
-
7
- // Correct overflow displayed oddly in IE 9
8
- svg:not(:root) {
9
- overflow: hidden;
10
- }
11
- }
2
+
3
+ /* ==========================================================================
4
+ Embedded content
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Remove border when inside `a` element in IE 8/9.
9
+ */
10
+
11
+ img {
12
+ border: 0;
13
+ }
14
+
15
+ /**
16
+ * Correct overflow displayed oddly in IE 9.
17
+ */
18
+
19
+ svg:not(:root) {
20
+ overflow: hidden;
21
+ }
22
+ }
@@ -1,6 +1,14 @@
1
1
  @mixin normalize-figures {
2
- // Address margin not present in IE 8/9, Safari 5.
3
- figure {
4
- margin: 0;
5
- }
6
- }
2
+
3
+ /* ==========================================================================
4
+ Figures
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Address margin not present in IE 8/9 and Safari 5.
9
+ */
10
+
11
+ figure {
12
+ margin: 0;
13
+ }
14
+ }
@@ -1,100 +1,142 @@
1
1
  @mixin normalize-forms {
2
- // Define consistent border, margin, and padding.
3
- fieldset {
4
- border: 1px solid #c0c0c0;
5
- margin: 0 2px;
6
- padding: 0.35em 0.625em 0.75em;
7
- }
8
-
9
- legend {
10
- // Correct color not being inherited in IE 8/9.
11
- border: 0;
12
- // Remove padding so people aren't caught out if they zero out fieldsets.
13
- padding: 0;
14
- }
15
-
16
- button,
17
- input,
18
- select,
19
- textarea {
20
- // Correct font family not being inherited in all browsers.
21
- font-family: inherit;
22
- // Correct font size not being inherited in all browsers.
23
- font-size: 100%;
24
- // Address margins set differently in Firefox 4+, Safari 5, and Chrome
25
- margin: 0;
26
- }
27
-
28
- // Address Firefox 4+ setting `line-height` on `input` using `!important` in
29
- // the UA stylesheet.
30
- button,
31
- input {
32
- line-height: normal;
33
- }
34
-
35
- // Address inconsistent `text-transform` inheritance for `button` and `select`.
36
- // All other form control elements do not inherit `text-transform` values.
37
- // Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
38
- // Correct `select` style inheritance in Firefox 4+ and Opera.
39
- button,
40
- select {
41
- text-transform: none;
42
- }
43
-
44
- // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio` and `video` controls.
45
- // 2. Correct inability to style clickable `input` types in iOS.
46
- // 3. Improve usability and consistency of cursor style between image-type `input` and others.
47
- button,
48
- html input[type="button"], // 1
49
- input[type="reset"],
50
- input[type="submit"] {
51
- -webkit-appearance: button; // 2
52
- cursor: pointer; // 3
53
- }
54
-
55
- // Re-set default cursor for disabled elements.
56
- button[disabled],
57
- html input[disabled] {
58
- cursor: default;
59
- }
60
-
61
- input[type="checkbox"],
62
- input[type="radio"] {
63
- // Address box sizing set to content-box in IE 8/9.
64
- box-sizing: border-box;
65
-
66
- // Remove excess padding in IE 8/9.
67
- padding: 0;
68
- }
69
-
70
- input[type="search"] {
71
- // Address `appearance` set to `searchfield` in Safari 5 and Chrome.
72
- -webkit-appearance: textfield;
73
-
74
- // Address `box-sizing` set to `border-box` in Safari 5, Chrome (include -moz to future-proof)
75
- -webkit-box-sizing: content-box;
76
- -moz-box-sizing: content-box;
77
- box-sizing: content-box;
78
- }
79
-
80
- // Remove inner padding and search cancel button in Safari 5 and Chrome on OS X.
81
- input[type="search"]::-webkit-search-decoration,
82
- input[type="search"]::-webkit-search-cancel-button {
83
- -webkit-appearance: none;
84
- }
85
-
86
- // Remove inner padding and border in Firefox 4+.
87
- button::-moz-focus-inner,
88
- input::-moz-focus-inner {
89
- border: 0;
90
- padding: 0;
91
- }
92
-
93
- textarea {
94
- // Remove default vertical scrollbar in IE 8/9
95
- overflow: auto;
96
-
97
- // Improve readability and alignment in all browsers
98
- vertical-align: top;
99
- }
100
- }
2
+
3
+ /* ==========================================================================
4
+ Forms
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Define consistent border, margin, and padding.
9
+ */
10
+
11
+ fieldset {
12
+ border: 1px solid #c0c0c0;
13
+ margin: 0 2px;
14
+ padding: 0.35em 0.625em 0.75em;
15
+ }
16
+
17
+ /**
18
+ * 1. Correct `color` not being inherited in IE 8/9.
19
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
20
+ */
21
+
22
+ legend {
23
+ border: 0; /* 1 */
24
+ padding: 0; /* 2 */
25
+ }
26
+
27
+ /**
28
+ * 1. Correct font family not being inherited in all browsers.
29
+ * 2. Correct font size not being inherited in all browsers.
30
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
31
+ */
32
+
33
+ button,
34
+ input,
35
+ select,
36
+ textarea {
37
+ font-family: inherit; /* 1 */
38
+ font-size: 100%; /* 2 */
39
+ margin: 0; /* 3 */
40
+ }
41
+
42
+ /**
43
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
44
+ * the UA stylesheet.
45
+ */
46
+
47
+ button,
48
+ input {
49
+ line-height: normal;
50
+ }
51
+
52
+ /**
53
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
54
+ * All other form control elements do not inherit `text-transform` values.
55
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
56
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
57
+ */
58
+
59
+ button,
60
+ select {
61
+ text-transform: none;
62
+ }
63
+
64
+ /**
65
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
66
+ * and `video` controls.
67
+ * 2. Correct inability to style clickable `input` types in iOS.
68
+ * 3. Improve usability and consistency of cursor style between image-type
69
+ * `input` and others.
70
+ */
71
+
72
+ button,
73
+ html input[type="button"], /* 1 */
74
+ input[type="reset"],
75
+ input[type="submit"] {
76
+ -webkit-appearance: button; /* 2 */
77
+ cursor: pointer; /* 3 */
78
+ }
79
+
80
+ /**
81
+ * Re-set default cursor for disabled elements.
82
+ */
83
+
84
+ button[disabled],
85
+ html input[disabled] {
86
+ cursor: default;
87
+ }
88
+
89
+ /**
90
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
91
+ * 2. Remove excess padding in IE 8/9/10.
92
+ */
93
+
94
+ input[type="checkbox"],
95
+ input[type="radio"] {
96
+ box-sizing: border-box; /* 1 */
97
+ padding: 0; /* 2 */
98
+ }
99
+
100
+ /**
101
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
102
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
103
+ * (include `-moz` to future-proof).
104
+ */
105
+
106
+ input[type="search"] {
107
+ -webkit-appearance: textfield; /* 1 */
108
+ -moz-box-sizing: content-box;
109
+ -webkit-box-sizing: content-box; /* 2 */
110
+ box-sizing: content-box;
111
+ }
112
+
113
+ /**
114
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
115
+ * on OS X.
116
+ */
117
+
118
+ input[type="search"]::-webkit-search-cancel-button,
119
+ input[type="search"]::-webkit-search-decoration {
120
+ -webkit-appearance: none;
121
+ }
122
+
123
+ /**
124
+ * Remove inner padding and border in Firefox 4+.
125
+ */
126
+
127
+ button::-moz-focus-inner,
128
+ input::-moz-focus-inner {
129
+ border: 0;
130
+ padding: 0;
131
+ }
132
+
133
+ /**
134
+ * 1. Remove default vertical scrollbar in IE 8/9.
135
+ * 2. Improve readability and alignment in all browsers.
136
+ */
137
+
138
+ textarea {
139
+ overflow: auto; /* 1 */
140
+ vertical-align: top; /* 2 */
141
+ }
142
+ }
@@ -1,36 +1,55 @@
1
1
  @mixin normalize-html5 {
2
- // Correct `block` display not defined in IE 8/9.
3
- article,
4
- aside,
5
- details,
6
- figcaption,
7
- figure,
8
- footer,
9
- header,
10
- hgroup,
11
- main,
12
- nav,
13
- section,
14
- summary {
15
- display: block;
16
- }
17
-
18
- // Correct `inline-block` display not defined in IE 8/9.
19
- audio,
20
- canvas,
21
- video {
22
- display: inline-block;
23
- }
24
-
25
- // Prevent modern browsers from displaying `audio` without controls.
26
- // Remove excess height in iOS 5 devices.
27
- audio:not([controls]) {
28
- display: none;
29
- height: 0;
30
- }
31
-
32
- // Address styling not present in IE 8/9.
33
- [hidden] {
34
- display: none;
35
- }
36
- }
2
+
3
+ /* ==========================================================================
4
+ HTML5 display definitions
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Correct `block` display not defined in IE 8/9.
9
+ */
10
+
11
+ article,
12
+ aside,
13
+ details,
14
+ figcaption,
15
+ figure,
16
+ footer,
17
+ header,
18
+ hgroup,
19
+ main,
20
+ nav,
21
+ section,
22
+ summary {
23
+ display: block;
24
+ }
25
+
26
+ /**
27
+ * Correct `inline-block` display not defined in IE 8/9.
28
+ */
29
+
30
+ audio,
31
+ canvas,
32
+ video {
33
+ display: inline-block;
34
+ }
35
+
36
+ /**
37
+ * Prevent modern browsers from displaying `audio` without controls.
38
+ * Remove excess height in iOS 5 devices.
39
+ */
40
+
41
+ audio:not([controls]) {
42
+ display: none;
43
+ height: 0;
44
+ }
45
+
46
+ /**
47
+ * Address `[hidden]` styling not present in IE 8/9.
48
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
49
+ */
50
+
51
+ [hidden],
52
+ template {
53
+ display: none;
54
+ }
55
+ }
@@ -1,14 +1,31 @@
1
1
  @mixin normalize-links {
2
- a {
3
- // Address `outline` inconsistency between Chrome and other browsers.
4
- &:focus {
5
- outline: thin dotted;
6
- }
7
-
8
- // Improve readability when focused and also mouse hovered in all browsers.
9
- &:hover,
10
- &:active {
11
- outline: 0;
2
+
3
+ /* ==========================================================================
4
+ Links
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Remove the gray background color from active links in IE 10.
9
+ */
10
+
11
+ a {
12
+ background: transparent;
13
+ }
14
+
15
+ /**
16
+ * Address `outline` inconsistency between Chrome and other browsers.
17
+ */
18
+
19
+ a:focus {
20
+ outline: thin dotted;
21
+ }
22
+
23
+ /**
24
+ * Improve readability when focused and also mouse hovered in all browsers.
25
+ */
26
+
27
+ a:active,
28
+ a:hover {
29
+ outline: 0;
12
30
  }
13
- }
14
- }
31
+ }
@@ -1,7 +1,14 @@
1
1
  @mixin normalize-tables {
2
- // Remove most spacing between table cells.
3
- table {
4
- border-collapse: collapse;
5
- border-spacing: 0;
6
- }
7
- }
2
+ /* ==========================================================================
3
+ Tables
4
+ ========================================================================== */
5
+
6
+ /**
7
+ * Remove most spacing between table cells.
8
+ */
9
+
10
+ table {
11
+ border-collapse: collapse;
12
+ border-spacing: 0;
13
+ }
14
+ }
@@ -1,78 +1,116 @@
1
1
  @mixin normalize-typography {
2
- // Address variable `h1` font-size and margin within `section` and `article` contexts in Firefox 4+, Safari 5, and Chrome.
3
- h1 {
4
- font-size: 2em;
5
- margin: 0.67em 0;
6
- }
7
-
8
- // Address styling not present in IE 8/9, Safari 5, Chrome.
9
- abbr[title] {
10
- border-bottom: 1px dotted;
11
- }
12
-
13
- // Address style set to `bolder` in Firefox 4+, Safari 5, Chrome.
14
- b,
15
- strong {
16
- font-weight: bold;
17
- }
18
-
19
- // Address styling not present in Safari 5, Chrome.
20
- dfn {
21
- font-style: italic;
22
- }
23
-
24
- // Address differences between Firefox and other browsers.
25
- hr {
26
- -moz-box-sizing: content-box;
27
- box-sizing: content-box;
28
- height: 0;
29
- }
30
-
31
- // Address styling not present in IE 8/9
32
- mark {
33
- background: #ff0;
34
- color: #000;
35
- }
36
-
37
- // Correct font family set oddly in Safari 5, and Chrome.
38
- code,
39
- kbd,
40
- pre,
41
- samp {
42
- font-family: monospace, serif;
43
- font-size: 1em;
44
- }
45
-
46
- // Improve readability of pre-formatted text in all browsers
47
- pre {
48
- white-space: pre-wrap;
49
- }
50
-
51
- // Set consistent quote types.
52
- q {
53
- quotes: "\201C" "\201D" "\2018" "\2019";
54
- }
55
-
56
- // Address inconsistent and variable font size in all browsers.
57
- small {
58
- font-size: 75%;
59
- }
60
-
61
- // Prevent `sub` and `sup` affecting `line-height` in all browsers.
62
- // gist.github.com/413930
63
- sub,
64
- sup {
65
- font-size: 75%;
66
- line-height: 0;
67
- position: relative;
68
- vertical-align: baseline;
69
- }
70
-
71
- sup {
72
- top: -0.5em;
73
- }
74
-
75
- sub {
76
- bottom: -0.25em;
77
- }
78
- }
2
+
3
+ /* ==========================================================================
4
+ Typography
5
+ ========================================================================== */
6
+
7
+ /**
8
+ * Address variable `h1` font-size and margin within `section` and `article`
9
+ * contexts in Firefox 4+, Safari 5, and Chrome.
10
+ */
11
+
12
+ h1 {
13
+ font-size: 2em;
14
+ margin: 0.67em 0;
15
+ }
16
+
17
+ /**
18
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
19
+ */
20
+
21
+ abbr[title] {
22
+ border-bottom: 1px dotted;
23
+ }
24
+
25
+ /**
26
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
27
+ */
28
+
29
+ b,
30
+ strong {
31
+ font-weight: bold;
32
+ }
33
+
34
+ /**
35
+ * Address styling not present in Safari 5 and Chrome.
36
+ */
37
+
38
+ dfn {
39
+ font-style: italic;
40
+ }
41
+
42
+ /**
43
+ * Address differences between Firefox and other browsers.
44
+ */
45
+
46
+ hr {
47
+ -moz-box-sizing: content-box;
48
+ box-sizing: content-box;
49
+ height: 0;
50
+ }
51
+
52
+ /**
53
+ * Address styling not present in IE 8/9.
54
+ */
55
+
56
+ mark {
57
+ background: #ff0;
58
+ color: #000;
59
+ }
60
+
61
+ /**
62
+ * Correct font family set oddly in Safari 5 and Chrome.
63
+ */
64
+
65
+ code,
66
+ kbd,
67
+ pre,
68
+ samp {
69
+ font-family: monospace, serif;
70
+ font-size: 1em;
71
+ }
72
+
73
+ /**
74
+ * Improve readability of pre-formatted text in all browsers.
75
+ */
76
+
77
+ pre {
78
+ white-space: pre-wrap;
79
+ }
80
+
81
+ /**
82
+ * Set consistent quote types.
83
+ */
84
+
85
+ q {
86
+ quotes: "\201C" "\201D" "\2018" "\2019";
87
+ }
88
+
89
+ /**
90
+ * Address inconsistent and variable font size in all browsers.
91
+ */
92
+
93
+ small {
94
+ font-size: 80%;
95
+ }
96
+
97
+ /**
98
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
99
+ */
100
+
101
+ sub,
102
+ sup {
103
+ font-size: 75%;
104
+ line-height: 0;
105
+ position: relative;
106
+ vertical-align: baseline;
107
+ }
108
+
109
+ sup {
110
+ top: -0.5em;
111
+ }
112
+
113
+ sub {
114
+ bottom: -0.25em;
115
+ }
116
+ }
metadata CHANGED
@@ -1,50 +1,38 @@
1
- --- !ruby/object:Gem::Specification
1
+ --- !ruby/object:Gem::Specification
2
2
  name: compass-normalize-plugin
3
- version: !ruby/object:Gem::Version
4
- hash: 13
5
- prerelease:
6
- segments:
7
- - 0
8
- - 4
9
- - 1
10
- version: 0.4.1
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.4.2
11
5
  platform: ruby
12
- authors:
13
- - Johannes Roettger
6
+ authors:
7
+ - Johannes Zorn
14
8
  - Nicolas Gallagher
15
9
  - Jonathan Neal
16
- - "'Ley Missailidis"
10
+ - '''Ley Missailidis'
17
11
  autorequire:
18
12
  bindir: bin
19
13
  cert_chain: []
20
-
21
- date: 2012-09-10 00:00:00 Z
22
- dependencies:
23
- - !ruby/object:Gem::Dependency
14
+ date: 2012-09-10 00:00:00.000000000 Z
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
24
17
  name: compass
25
- prerelease: false
26
- requirement: &id001 !ruby/object:Gem::Requirement
27
- none: false
28
- requirements:
29
- - - ">="
30
- - !ruby/object:Gem::Version
31
- hash: 49
32
- segments:
33
- - 0
34
- - 11
35
- - 1
18
+ requirement: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - '>='
21
+ - !ruby/object:Gem::Version
36
22
  version: 0.11.1
37
23
  type: :runtime
38
- version_requirements: *id001
24
+ prerelease: false
25
+ version_requirements: !ruby/object:Gem::Requirement
26
+ requirements:
27
+ - - '>='
28
+ - !ruby/object:Gem::Version
29
+ version: 0.11.1
39
30
  description: This is a normalize.css extension for the Compass framework.
40
31
  email: johannes@zorn.in
41
32
  executables: []
42
-
43
33
  extensions: []
44
-
45
34
  extra_rdoc_files: []
46
-
47
- files:
35
+ files:
48
36
  - CHANGELOG.md
49
37
  - compass-normalize-plugin.gemspec
50
38
  - lib/normalize.rb
@@ -65,36 +53,26 @@ files:
65
53
  - VERSION
66
54
  homepage: http://jzorn.github.com/compass-normalize-plugin/
67
55
  licenses: []
68
-
56
+ metadata: {}
69
57
  post_install_message:
70
58
  rdoc_options: []
71
-
72
- require_paths:
59
+ require_paths:
73
60
  - lib
74
- required_ruby_version: !ruby/object:Gem::Requirement
75
- none: false
76
- requirements:
77
- - - ">="
78
- - !ruby/object:Gem::Version
79
- hash: 3
80
- segments:
81
- - 0
82
- version: "0"
83
- required_rubygems_version: !ruby/object:Gem::Requirement
84
- none: false
85
- requirements:
86
- - - ">="
87
- - !ruby/object:Gem::Version
88
- hash: 3
89
- segments:
90
- - 0
91
- version: "0"
61
+ required_ruby_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ required_rubygems_version: !ruby/object:Gem::Requirement
67
+ requirements:
68
+ - - '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
92
71
  requirements: []
93
-
94
72
  rubyforge_project:
95
- rubygems_version: 1.8.24
73
+ rubygems_version: 2.1.11
96
74
  signing_key:
97
- specification_version: 3
98
- summary: Makes browsers render HTML elements consistently and in line with modern standards.
75
+ specification_version: 4
76
+ summary: Makes browsers render HTML elements consistently and in line with modern
77
+ standards.
99
78
  test_files: []
100
-