normalize-rails 2.1.3 → 3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/normalize-rails/version.rb +1 -1
- data/normalize-rails.gemspec +2 -1
- data/vendor/assets/stylesheets/index.scss +1 -0
- data/vendor/assets/stylesheets/normalize-rails.scss +1 -0
- data/vendor/assets/stylesheets/normalize-rails/index.css +1 -1
- data/vendor/assets/stylesheets/normalize-rails/normalize.css +177 -160
- metadata +12 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e4b2ab98b196d30a2c169a65d6621a642de9ab90
|
4
|
+
data.tar.gz: 93dfd75e69f4723df21fd0ce66ee2e78c07c96e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22c0b50495d650aad294b3854bdbf4867b8a3cce54c7d25c5ad0323f57fb9ae539b68c959050f008ca26bbf080b15f09a25f363adb8a7c7dfbcbda4d3db31f86
|
7
|
+
data.tar.gz: 08f58373c84a49aafb029edf9509ef030df116733102024b8db76d6875ce94118107a50bc081e68412a333c5c5555b58c457b9c4a7be3e838375f0d2359f0b96
|
data/normalize-rails.gemspec
CHANGED
@@ -7,6 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.description = %q{Normalize.css is an alternative to CSS resets}
|
8
8
|
gem.summary = %q{Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards. We researched the differences between default browser styles in order to precisely target only the styles that need normalizing.}
|
9
9
|
gem.homepage = "https://github.com/markmcconachie/normalize-rails"
|
10
|
+
gem.license = 'MIT'
|
10
11
|
|
11
12
|
gem.files = `git ls-files`.split($\)
|
12
13
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
@@ -14,6 +15,6 @@ Gem::Specification.new do |gem|
|
|
14
15
|
gem.name = "normalize-rails"
|
15
16
|
gem.require_paths = ["lib"]
|
16
17
|
gem.version = Normalize::Rails::VERSION
|
17
|
-
|
18
|
+
|
18
19
|
gem.add_development_dependency "rake"
|
19
20
|
end
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'normalize-rails/normalize'
|
@@ -0,0 +1 @@
|
|
1
|
+
@import 'normalize-rails/normalize'
|
@@ -1 +1 @@
|
|
1
|
-
//= require ./normalize
|
1
|
+
//= require ./normalize
|
@@ -1,7 +1,26 @@
|
|
1
|
-
/*! normalize.css
|
1
|
+
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
/**
|
4
|
+
* 1. Set default font family to sans-serif.
|
5
|
+
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
6
|
+
* user zoom.
|
7
|
+
*/
|
8
|
+
|
9
|
+
html {
|
10
|
+
font-family: sans-serif; /* 1 */
|
11
|
+
-ms-text-size-adjust: 100%; /* 2 */
|
12
|
+
-webkit-text-size-adjust: 100%; /* 2 */
|
13
|
+
}
|
14
|
+
|
15
|
+
/**
|
16
|
+
* Remove default margin.
|
17
|
+
*/
|
18
|
+
|
19
|
+
body {
|
20
|
+
margin: 0;
|
21
|
+
}
|
22
|
+
|
23
|
+
/* HTML5 display definitions
|
5
24
|
========================================================================== */
|
6
25
|
|
7
26
|
/**
|
@@ -20,17 +39,20 @@ main,
|
|
20
39
|
nav,
|
21
40
|
section,
|
22
41
|
summary {
|
23
|
-
|
42
|
+
display: block;
|
24
43
|
}
|
25
44
|
|
26
45
|
/**
|
27
|
-
* Correct `inline-block` display not defined in IE 8/9.
|
46
|
+
* 1. Correct `inline-block` display not defined in IE 8/9.
|
47
|
+
* 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
|
28
48
|
*/
|
29
49
|
|
30
50
|
audio,
|
31
51
|
canvas,
|
52
|
+
progress,
|
32
53
|
video {
|
33
|
-
|
54
|
+
display: inline-block; /* 1 */
|
55
|
+
vertical-align: baseline; /* 2 */
|
34
56
|
}
|
35
57
|
|
36
58
|
/**
|
@@ -39,8 +61,8 @@ video {
|
|
39
61
|
*/
|
40
62
|
|
41
63
|
audio:not([controls]) {
|
42
|
-
|
43
|
-
|
64
|
+
display: none;
|
65
|
+
height: 0;
|
44
66
|
}
|
45
67
|
|
46
68
|
/**
|
@@ -50,35 +72,10 @@ audio:not([controls]) {
|
|
50
72
|
|
51
73
|
[hidden],
|
52
74
|
template {
|
53
|
-
|
75
|
+
display: none;
|
54
76
|
}
|
55
77
|
|
56
|
-
/*
|
57
|
-
Base
|
58
|
-
========================================================================== */
|
59
|
-
|
60
|
-
/**
|
61
|
-
* 1. Set default font family to sans-serif.
|
62
|
-
* 2. Prevent iOS text size adjust after orientation change, without disabling
|
63
|
-
* user zoom.
|
64
|
-
*/
|
65
|
-
|
66
|
-
html {
|
67
|
-
font-family: sans-serif; /* 1 */
|
68
|
-
-ms-text-size-adjust: 100%; /* 2 */
|
69
|
-
-webkit-text-size-adjust: 100%; /* 2 */
|
70
|
-
}
|
71
|
-
|
72
|
-
/**
|
73
|
-
* Remove default margin.
|
74
|
-
*/
|
75
|
-
|
76
|
-
body {
|
77
|
-
margin: 0;
|
78
|
-
}
|
79
|
-
|
80
|
-
/* ==========================================================================
|
81
|
-
Links
|
78
|
+
/* Links
|
82
79
|
========================================================================== */
|
83
80
|
|
84
81
|
/**
|
@@ -86,15 +83,7 @@ body {
|
|
86
83
|
*/
|
87
84
|
|
88
85
|
a {
|
89
|
-
|
90
|
-
}
|
91
|
-
|
92
|
-
/**
|
93
|
-
* Address `outline` inconsistency between Chrome and other browsers.
|
94
|
-
*/
|
95
|
-
|
96
|
-
a:focus {
|
97
|
-
outline: thin dotted;
|
86
|
+
background: transparent;
|
98
87
|
}
|
99
88
|
|
100
89
|
/**
|
@@ -103,29 +92,18 @@ a:focus {
|
|
103
92
|
|
104
93
|
a:active,
|
105
94
|
a:hover {
|
106
|
-
|
95
|
+
outline: 0;
|
107
96
|
}
|
108
97
|
|
109
|
-
/*
|
110
|
-
Typography
|
98
|
+
/* Text-level semantics
|
111
99
|
========================================================================== */
|
112
100
|
|
113
|
-
/**
|
114
|
-
* Address variable `h1` font-size and margin within `section` and `article`
|
115
|
-
* contexts in Firefox 4+, Safari 5, and Chrome.
|
116
|
-
*/
|
117
|
-
|
118
|
-
h1 {
|
119
|
-
font-size: 2em;
|
120
|
-
margin: 0.67em 0;
|
121
|
-
}
|
122
|
-
|
123
101
|
/**
|
124
102
|
* Address styling not present in IE 8/9, Safari 5, and Chrome.
|
125
103
|
*/
|
126
104
|
|
127
105
|
abbr[title] {
|
128
|
-
|
106
|
+
border-bottom: 1px dotted;
|
129
107
|
}
|
130
108
|
|
131
109
|
/**
|
@@ -134,7 +112,7 @@ abbr[title] {
|
|
134
112
|
|
135
113
|
b,
|
136
114
|
strong {
|
137
|
-
|
115
|
+
font-weight: bold;
|
138
116
|
}
|
139
117
|
|
140
118
|
/**
|
@@ -142,17 +120,17 @@ strong {
|
|
142
120
|
*/
|
143
121
|
|
144
122
|
dfn {
|
145
|
-
|
123
|
+
font-style: italic;
|
146
124
|
}
|
147
125
|
|
148
126
|
/**
|
149
|
-
* Address
|
127
|
+
* Address variable `h1` font-size and margin within `section` and `article`
|
128
|
+
* contexts in Firefox 4+, Safari 5, and Chrome.
|
150
129
|
*/
|
151
130
|
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
height: 0;
|
131
|
+
h1 {
|
132
|
+
font-size: 2em;
|
133
|
+
margin: 0.67em 0;
|
156
134
|
}
|
157
135
|
|
158
136
|
/**
|
@@ -160,36 +138,8 @@ hr {
|
|
160
138
|
*/
|
161
139
|
|
162
140
|
mark {
|
163
|
-
|
164
|
-
|
165
|
-
}
|
166
|
-
|
167
|
-
/**
|
168
|
-
* Correct font family set oddly in Safari 5 and Chrome.
|
169
|
-
*/
|
170
|
-
|
171
|
-
code,
|
172
|
-
kbd,
|
173
|
-
pre,
|
174
|
-
samp {
|
175
|
-
font-family: monospace, serif;
|
176
|
-
font-size: 1em;
|
177
|
-
}
|
178
|
-
|
179
|
-
/**
|
180
|
-
* Improve readability of pre-formatted text in all browsers.
|
181
|
-
*/
|
182
|
-
|
183
|
-
pre {
|
184
|
-
white-space: pre-wrap;
|
185
|
-
}
|
186
|
-
|
187
|
-
/**
|
188
|
-
* Set consistent quote types.
|
189
|
-
*/
|
190
|
-
|
191
|
-
q {
|
192
|
-
quotes: "\201C" "\201D" "\2018" "\2019";
|
141
|
+
background: #ff0;
|
142
|
+
color: #000;
|
193
143
|
}
|
194
144
|
|
195
145
|
/**
|
@@ -197,7 +147,7 @@ q {
|
|
197
147
|
*/
|
198
148
|
|
199
149
|
small {
|
200
|
-
|
150
|
+
font-size: 80%;
|
201
151
|
}
|
202
152
|
|
203
153
|
/**
|
@@ -206,22 +156,21 @@ small {
|
|
206
156
|
|
207
157
|
sub,
|
208
158
|
sup {
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
159
|
+
font-size: 75%;
|
160
|
+
line-height: 0;
|
161
|
+
position: relative;
|
162
|
+
vertical-align: baseline;
|
213
163
|
}
|
214
164
|
|
215
165
|
sup {
|
216
|
-
|
166
|
+
top: -0.5em;
|
217
167
|
}
|
218
168
|
|
219
169
|
sub {
|
220
|
-
|
170
|
+
bottom: -0.25em;
|
221
171
|
}
|
222
172
|
|
223
|
-
/*
|
224
|
-
Embedded content
|
173
|
+
/* Embedded content
|
225
174
|
========================================================================== */
|
226
175
|
|
227
176
|
/**
|
@@ -229,7 +178,7 @@ sub {
|
|
229
178
|
*/
|
230
179
|
|
231
180
|
img {
|
232
|
-
|
181
|
+
border: 0;
|
233
182
|
}
|
234
183
|
|
235
184
|
/**
|
@@ -237,11 +186,10 @@ img {
|
|
237
186
|
*/
|
238
187
|
|
239
188
|
svg:not(:root) {
|
240
|
-
|
189
|
+
overflow: hidden;
|
241
190
|
}
|
242
191
|
|
243
|
-
/*
|
244
|
-
Figures
|
192
|
+
/* Grouping content
|
245
193
|
========================================================================== */
|
246
194
|
|
247
195
|
/**
|
@@ -249,68 +197,82 @@ svg:not(:root) {
|
|
249
197
|
*/
|
250
198
|
|
251
199
|
figure {
|
252
|
-
|
200
|
+
margin: 1em 40px;
|
253
201
|
}
|
254
202
|
|
255
|
-
|
256
|
-
|
257
|
-
|
203
|
+
/**
|
204
|
+
* Address differences between Firefox and other browsers.
|
205
|
+
*/
|
206
|
+
|
207
|
+
hr {
|
208
|
+
-moz-box-sizing: content-box;
|
209
|
+
box-sizing: content-box;
|
210
|
+
height: 0;
|
211
|
+
}
|
258
212
|
|
259
213
|
/**
|
260
|
-
*
|
214
|
+
* Contain overflow in all browsers.
|
261
215
|
*/
|
262
216
|
|
263
|
-
|
264
|
-
|
265
|
-
margin: 0 2px;
|
266
|
-
padding: 0.35em 0.625em 0.75em;
|
217
|
+
pre {
|
218
|
+
overflow: auto;
|
267
219
|
}
|
268
220
|
|
269
221
|
/**
|
270
|
-
*
|
271
|
-
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
222
|
+
* Address odd `em`-unit font size rendering in all browsers.
|
272
223
|
*/
|
273
224
|
|
274
|
-
|
275
|
-
|
276
|
-
|
225
|
+
code,
|
226
|
+
kbd,
|
227
|
+
pre,
|
228
|
+
samp {
|
229
|
+
font-family: monospace, monospace;
|
230
|
+
font-size: 1em;
|
277
231
|
}
|
278
232
|
|
233
|
+
/* Forms
|
234
|
+
========================================================================== */
|
235
|
+
|
279
236
|
/**
|
280
|
-
*
|
281
|
-
*
|
237
|
+
* Known limitation: by default, Chrome and Safari on OS X allow very limited
|
238
|
+
* styling of `select`, unless a `border` property is set.
|
239
|
+
*/
|
240
|
+
|
241
|
+
/**
|
242
|
+
* 1. Correct color not being inherited.
|
243
|
+
* Known issue: affects color of disabled elements.
|
244
|
+
* 2. Correct font properties not being inherited.
|
282
245
|
* 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
|
283
246
|
*/
|
284
247
|
|
285
248
|
button,
|
286
249
|
input,
|
250
|
+
optgroup,
|
287
251
|
select,
|
288
252
|
textarea {
|
289
|
-
|
290
|
-
|
291
|
-
|
253
|
+
color: inherit; /* 1 */
|
254
|
+
font: inherit; /* 2 */
|
255
|
+
margin: 0; /* 3 */
|
292
256
|
}
|
293
257
|
|
294
258
|
/**
|
295
|
-
* Address
|
296
|
-
* the UA stylesheet.
|
259
|
+
* Address `overflow` set to `hidden` in IE 8/9/10.
|
297
260
|
*/
|
298
261
|
|
299
|
-
button
|
300
|
-
|
301
|
-
line-height: normal;
|
262
|
+
button {
|
263
|
+
overflow: visible;
|
302
264
|
}
|
303
265
|
|
304
266
|
/**
|
305
267
|
* Address inconsistent `text-transform` inheritance for `button` and `select`.
|
306
268
|
* All other form control elements do not inherit `text-transform` values.
|
307
|
-
* Correct `button` style inheritance in
|
308
|
-
* Correct `select` style inheritance in Firefox
|
269
|
+
* Correct `button` style inheritance in Firefox, IE 8+, and Opera
|
270
|
+
* Correct `select` style inheritance in Firefox.
|
309
271
|
*/
|
310
272
|
|
311
273
|
button,
|
312
274
|
select {
|
313
|
-
|
275
|
+
text-transform: none;
|
314
276
|
}
|
315
277
|
|
316
278
|
/**
|
@@ -325,8 +287,8 @@ button,
|
|
325
287
|
html input[type="button"], /* 1 */
|
326
288
|
input[type="reset"],
|
327
289
|
input[type="submit"] {
|
328
|
-
|
329
|
-
|
290
|
+
-webkit-appearance: button; /* 2 */
|
291
|
+
cursor: pointer; /* 3 */
|
330
292
|
}
|
331
293
|
|
332
294
|
/**
|
@@ -335,18 +297,51 @@ input[type="submit"] {
|
|
335
297
|
|
336
298
|
button[disabled],
|
337
299
|
html input[disabled] {
|
338
|
-
|
300
|
+
cursor: default;
|
339
301
|
}
|
340
302
|
|
341
303
|
/**
|
304
|
+
* Remove inner padding and border in Firefox 4+.
|
305
|
+
*/
|
306
|
+
|
307
|
+
button::-moz-focus-inner,
|
308
|
+
input::-moz-focus-inner {
|
309
|
+
border: 0;
|
310
|
+
padding: 0;
|
311
|
+
}
|
312
|
+
|
313
|
+
/**
|
314
|
+
* Address Firefox 4+ setting `line-height` on `input` using `!important` in
|
315
|
+
* the UA stylesheet.
|
316
|
+
*/
|
317
|
+
|
318
|
+
input {
|
319
|
+
line-height: normal;
|
320
|
+
}
|
321
|
+
|
322
|
+
/**
|
323
|
+
* It's recommended that you don't attempt to style these elements.
|
324
|
+
* Firefox's implementation doesn't respect box-sizing, padding, or width.
|
325
|
+
*
|
342
326
|
* 1. Address box sizing set to `content-box` in IE 8/9/10.
|
343
327
|
* 2. Remove excess padding in IE 8/9/10.
|
344
328
|
*/
|
345
329
|
|
346
330
|
input[type="checkbox"],
|
347
331
|
input[type="radio"] {
|
348
|
-
|
349
|
-
|
332
|
+
box-sizing: border-box; /* 1 */
|
333
|
+
padding: 0; /* 2 */
|
334
|
+
}
|
335
|
+
|
336
|
+
/**
|
337
|
+
* Fix the cursor style for Chrome's increment/decrement buttons. For certain
|
338
|
+
* `font-size` values of the `input`, it causes the cursor style of the
|
339
|
+
* decrement button to change from `default` to `text`.
|
340
|
+
*/
|
341
|
+
|
342
|
+
input[type="number"]::-webkit-inner-spin-button,
|
343
|
+
input[type="number"]::-webkit-outer-spin-button {
|
344
|
+
height: auto;
|
350
345
|
}
|
351
346
|
|
352
347
|
/**
|
@@ -356,44 +351,61 @@ input[type="radio"] {
|
|
356
351
|
*/
|
357
352
|
|
358
353
|
input[type="search"] {
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
354
|
+
-webkit-appearance: textfield; /* 1 */
|
355
|
+
-moz-box-sizing: content-box;
|
356
|
+
-webkit-box-sizing: content-box; /* 2 */
|
357
|
+
box-sizing: content-box;
|
363
358
|
}
|
364
359
|
|
365
360
|
/**
|
366
|
-
* Remove inner padding and search cancel button in Safari
|
367
|
-
*
|
361
|
+
* Remove inner padding and search cancel button in Safari and Chrome on OS X.
|
362
|
+
* Safari (but not Chrome) clips the cancel button when the search input has
|
363
|
+
* padding (and `textfield` appearance).
|
368
364
|
*/
|
369
365
|
|
370
366
|
input[type="search"]::-webkit-search-cancel-button,
|
371
367
|
input[type="search"]::-webkit-search-decoration {
|
372
|
-
|
368
|
+
-webkit-appearance: none;
|
373
369
|
}
|
374
370
|
|
375
371
|
/**
|
376
|
-
*
|
372
|
+
* Define consistent border, margin, and padding.
|
377
373
|
*/
|
378
374
|
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
375
|
+
fieldset {
|
376
|
+
border: 1px solid #c0c0c0;
|
377
|
+
margin: 0 2px;
|
378
|
+
padding: 0.35em 0.625em 0.75em;
|
383
379
|
}
|
384
380
|
|
385
381
|
/**
|
386
|
-
* 1.
|
387
|
-
* 2.
|
382
|
+
* 1. Correct `color` not being inherited in IE 8/9.
|
383
|
+
* 2. Remove padding so people aren't caught out if they zero out fieldsets.
|
384
|
+
*/
|
385
|
+
|
386
|
+
legend {
|
387
|
+
border: 0; /* 1 */
|
388
|
+
padding: 0; /* 2 */
|
389
|
+
}
|
390
|
+
|
391
|
+
/**
|
392
|
+
* Remove default vertical scrollbar in IE 8/9.
|
388
393
|
*/
|
389
394
|
|
390
395
|
textarea {
|
391
|
-
|
392
|
-
|
396
|
+
overflow: auto;
|
397
|
+
}
|
398
|
+
|
399
|
+
/**
|
400
|
+
* Don't inherit the `font-weight` (applied by a rule above).
|
401
|
+
* NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
|
402
|
+
*/
|
403
|
+
|
404
|
+
optgroup {
|
405
|
+
font-weight: bold;
|
393
406
|
}
|
394
407
|
|
395
|
-
/*
|
396
|
-
Tables
|
408
|
+
/* Tables
|
397
409
|
========================================================================== */
|
398
410
|
|
399
411
|
/**
|
@@ -401,6 +413,11 @@ textarea {
|
|
401
413
|
*/
|
402
414
|
|
403
415
|
table {
|
404
|
-
|
405
|
-
|
416
|
+
border-collapse: collapse;
|
417
|
+
border-spacing: 0;
|
418
|
+
}
|
419
|
+
|
420
|
+
td,
|
421
|
+
th {
|
422
|
+
padding: 0;
|
406
423
|
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: normalize-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: '3.0'
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nicolas Gallagher
|
@@ -10,20 +10,20 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2014-02-11 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
17
17
|
requirement: !ruby/object:Gem::Requirement
|
18
18
|
requirements:
|
19
|
-
- -
|
19
|
+
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
21
|
version: '0'
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
25
|
requirements:
|
26
|
-
- -
|
26
|
+
- - ">="
|
27
27
|
- !ruby/object:Gem::Version
|
28
28
|
version: '0'
|
29
29
|
description: Normalize.css is an alternative to CSS resets
|
@@ -33,7 +33,7 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- .gitignore
|
36
|
+
- ".gitignore"
|
37
37
|
- Gemfile
|
38
38
|
- LICENSE
|
39
39
|
- README.md
|
@@ -42,10 +42,13 @@ files:
|
|
42
42
|
- lib/normalize-rails/engine.rb
|
43
43
|
- lib/normalize-rails/version.rb
|
44
44
|
- normalize-rails.gemspec
|
45
|
+
- vendor/assets/stylesheets/index.scss
|
46
|
+
- vendor/assets/stylesheets/normalize-rails.scss
|
45
47
|
- vendor/assets/stylesheets/normalize-rails/index.css
|
46
48
|
- vendor/assets/stylesheets/normalize-rails/normalize.css
|
47
49
|
homepage: https://github.com/markmcconachie/normalize-rails
|
48
|
-
licenses:
|
50
|
+
licenses:
|
51
|
+
- MIT
|
49
52
|
metadata: {}
|
50
53
|
post_install_message:
|
51
54
|
rdoc_options: []
|
@@ -53,17 +56,17 @@ require_paths:
|
|
53
56
|
- lib
|
54
57
|
required_ruby_version: !ruby/object:Gem::Requirement
|
55
58
|
requirements:
|
56
|
-
- -
|
59
|
+
- - ">="
|
57
60
|
- !ruby/object:Gem::Version
|
58
61
|
version: '0'
|
59
62
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
60
63
|
requirements:
|
61
|
-
- -
|
64
|
+
- - ">="
|
62
65
|
- !ruby/object:Gem::Version
|
63
66
|
version: '0'
|
64
67
|
requirements: []
|
65
68
|
rubyforge_project:
|
66
|
-
rubygems_version: 2.
|
69
|
+
rubygems_version: 2.2.0
|
67
70
|
signing_key:
|
68
71
|
specification_version: 4
|
69
72
|
summary: Normalize.css is a customisable CSS file that makes browsers render all elements
|