normality 0.0.1

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 (43) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +61 -0
  4. data/app/assets/stylesheets/_normality.scss +80 -0
  5. data/app/assets/stylesheets/normality/addons/_box.scss +9 -0
  6. data/app/assets/stylesheets/normality/base/_body.scss +7 -0
  7. data/app/assets/stylesheets/normality/base/_html.scss +11 -0
  8. data/app/assets/stylesheets/normality/embed/_img.scss +7 -0
  9. data/app/assets/stylesheets/normality/embed/_svg.scss +7 -0
  10. data/app/assets/stylesheets/normality/figures/_figure.scss +7 -0
  11. data/app/assets/stylesheets/normality/forms/_buttons.scss +15 -0
  12. data/app/assets/stylesheets/normality/forms/_checkbox-and-radio.scss +10 -0
  13. data/app/assets/stylesheets/normality/forms/_disabled.scss +8 -0
  14. data/app/assets/stylesheets/normality/forms/_fieldset.scss +9 -0
  15. data/app/assets/stylesheets/normality/forms/_fix-focus-inner.scss +9 -0
  16. data/app/assets/stylesheets/normality/forms/_fix-font.scss +14 -0
  17. data/app/assets/stylesheets/normality/forms/_fix-line-height.scss +9 -0
  18. data/app/assets/stylesheets/normality/forms/_fix-text-transform.scss +11 -0
  19. data/app/assets/stylesheets/normality/forms/_legend.scss +9 -0
  20. data/app/assets/stylesheets/normality/forms/_search.scss +22 -0
  21. data/app/assets/stylesheets/normality/forms/_textarea.scss +9 -0
  22. data/app/assets/stylesheets/normality/html5/_audio.scss +9 -0
  23. data/app/assets/stylesheets/normality/html5/_blocks.scss +18 -0
  24. data/app/assets/stylesheets/normality/html5/_hidden.scss +9 -0
  25. data/app/assets/stylesheets/normality/html5/_inline-blocks.scss +9 -0
  26. data/app/assets/stylesheets/normality/links/_fix-background.scss +7 -0
  27. data/app/assets/stylesheets/normality/links/_fix-outline.scss +16 -0
  28. data/app/assets/stylesheets/normality/tables/_fix-cell-spacing.scss +8 -0
  29. data/app/assets/stylesheets/normality/typography/_abbr.scss +7 -0
  30. data/app/assets/stylesheets/normality/typography/_dfn.scss +8 -0
  31. data/app/assets/stylesheets/normality/typography/_fix-bolder.scss +8 -0
  32. data/app/assets/stylesheets/normality/typography/_fix-monospace.scss +11 -0
  33. data/app/assets/stylesheets/normality/typography/_headings.scss +10 -0
  34. data/app/assets/stylesheets/normality/typography/_hr.scss +9 -0
  35. data/app/assets/stylesheets/normality/typography/_mark.scss +8 -0
  36. data/app/assets/stylesheets/normality/typography/_pre.scss +7 -0
  37. data/app/assets/stylesheets/normality/typography/_q.scss +7 -0
  38. data/app/assets/stylesheets/normality/typography/_small.scss +7 -0
  39. data/app/assets/stylesheets/normality/typography/_sub-and-sup.scss +19 -0
  40. data/lib/normality/engine.rb +5 -0
  41. data/lib/normality/version.rb +3 -0
  42. data/lib/normality.rb +4 -0
  43. metadata +99 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: abd20881d97c0f21192a7dfb7abab0be8d9e70e0
4
+ data.tar.gz: 2244fb813e6dbd9f1b78c54838424c4a04cd4c48
5
+ SHA512:
6
+ metadata.gz: a1b3bb7b0ae1b2a49085043abe159f1c738e968fd3b4ffd26d1a495ed2821b11ac4b70f1ea1e3172f2b2b609a0e61043cde000af0b12f29b70d364b547801098
7
+ data.tar.gz: cbd71dde76c75760c9db1eef58ec8e90e4293d6eadcccd02ac577383af0a5ab43df9b98c3fa296a289991f8c5984c389d790015a5074961bc5b4267cda5b576a
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2013 Daniel Perez Alvarez
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,61 @@
1
+ # Normality
2
+
3
+ Include [normalize.css](http://necolas.github.io/normalize.css/) functionality in your Rails app using SASS/SCSS.
4
+
5
+
6
+ ## Install for Rails 3.1+
7
+
8
+ In your `Gemfile`, add `sass-rails` (if you don't have it already) and `normality`:
9
+
10
+ ```ruby
11
+ gem 'sass-rails'
12
+ gem 'normality'
13
+ ```
14
+
15
+ Then run:
16
+
17
+ ```sh
18
+ bundle install
19
+ ```
20
+
21
+ Restart your server.
22
+
23
+ To start using *Normality* in your SCSS stylesheets, rename `application.css` to `application.css.scss`:
24
+
25
+ ```sh
26
+ mv app/assets/stylesheets/application.css app/assets/stylesheets/application.css.scss
27
+ ```
28
+
29
+ Delete the Sprocket directives in `application.css.scss`:
30
+
31
+ ```css
32
+ /*
33
+ *= require_self
34
+ *= require_tree .
35
+ */
36
+ ```
37
+
38
+ And finally import *Normality* (and your own stylesheets) in `application.css.scss` using `@import`:
39
+
40
+ ```scss
41
+ @import "normalize";
42
+
43
+ @import "home";
44
+ @import "users";
45
+ ```
46
+
47
+
48
+ ## Meta
49
+
50
+ * Code: `git clone git://github.com/unindented/normality.git`
51
+ * Home: <https://github.com/unindented/normality/>
52
+
53
+
54
+ ## Contributors
55
+
56
+ * Daniel Perez Alvarez ([unindented@gmail.com](mailto:unindented@gmail.com))
57
+
58
+
59
+ ## License
60
+
61
+ Copyright (c) 2013 Daniel Perez Alvarez ([unindented.org](http://unindented.org/)). This is free software, and may be redistributed under the terms specified in the LICENSE file.
@@ -0,0 +1,80 @@
1
+ /* =============================================================================
2
+ HTML5 display definitions
3
+ ========================================================================== */
4
+
5
+ @import "normality/html5/blocks";
6
+ @import "normality/html5/inline-blocks";
7
+ @import "normality/html5/audio";
8
+ @import "normality/html5/hidden";
9
+
10
+
11
+ /* =============================================================================
12
+ Base
13
+ ========================================================================== */
14
+
15
+ @import "normality/base/html";
16
+ @import "normality/base/body";
17
+
18
+
19
+ /* =============================================================================
20
+ Links
21
+ ========================================================================== */
22
+
23
+ @import "normality/links/fix-background";
24
+ @import "normality/links/fix-outline";
25
+
26
+
27
+ /* =============================================================================
28
+ Typography
29
+ ========================================================================== */
30
+
31
+ @import "normality/typography/headings";
32
+ @import "normality/typography/abbr";
33
+ @import "normality/typography/fix-bolder";
34
+ @import "normality/typography/dfn";
35
+ @import "normality/typography/hr";
36
+ @import "normality/typography/mark";
37
+ @import "normality/typography/fix-monospace";
38
+ @import "normality/typography/pre";
39
+ @import "normality/typography/q";
40
+ @import "normality/typography/small";
41
+ @import "normality/typography/sub-and-sup";
42
+
43
+
44
+ /* =============================================================================
45
+ Embedded content
46
+ ========================================================================== */
47
+
48
+ @import "normality/embed/img";
49
+ @import "normality/embed/svg";
50
+
51
+
52
+ /* =============================================================================
53
+ Figures
54
+ ========================================================================== */
55
+
56
+ @import "normality/figures/figure";
57
+
58
+
59
+ /* =============================================================================
60
+ Forms
61
+ ========================================================================== */
62
+
63
+ @import "normality/forms/fieldset";
64
+ @import "normality/forms/legend";
65
+ @import "normality/forms/fix-font";
66
+ @import "normality/forms/fix-text-transform";
67
+ @import "normality/forms/fix-line-height";
68
+ @import "normality/forms/buttons";
69
+ @import "normality/forms/disabled";
70
+ @import "normality/forms/checkbox-and-radio";
71
+ @import "normality/forms/search";
72
+ @import "normality/forms/fix-focus-inner";
73
+ @import "normality/forms/textarea";
74
+
75
+
76
+ /* =============================================================================
77
+ Tables
78
+ ========================================================================== */
79
+
80
+ @import "normality/tables/fix-cell-spacing";
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Apply border box to all elements.
3
+ */
4
+
5
+ * {
6
+ -moz-box-sizing: border-box;
7
+ -webkit-box-sizing: border-box;
8
+ box-sizing: border-box;
9
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Remove default margin.
3
+ */
4
+
5
+ body {
6
+ margin: 0;
7
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * 1. Set default font family to sans-serif.
3
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
4
+ * user zoom.
5
+ */
6
+
7
+ html {
8
+ font-family: sans-serif; /* 1 */
9
+ -ms-text-size-adjust: 100%; /* 2 */
10
+ -webkit-text-size-adjust: 100%; /* 2 */
11
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Remove border when inside `a` element in IE 8/9.
3
+ */
4
+
5
+ img {
6
+ border: 0;
7
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Correct overflow displayed oddly in IE 9.
3
+ */
4
+
5
+ svg:not(:root) {
6
+ overflow: hidden;
7
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Address margin not present in IE 8/9 and Safari 5.
3
+ */
4
+
5
+ figure {
6
+ margin: 0;
7
+ }
@@ -0,0 +1,15 @@
1
+ /**
2
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
3
+ * and `video` controls.
4
+ * 2. Correct inability to style clickable `input` types in iOS.
5
+ * 3. Improve usability and consistency of cursor style between image-type
6
+ * `input` and others.
7
+ */
8
+
9
+ button,
10
+ html input[type="button"], /* 1 */
11
+ input[type="reset"],
12
+ input[type="submit"] {
13
+ -webkit-appearance: button; /* 2 */
14
+ cursor: pointer; /* 3 */
15
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * 1. Address box sizing set to `content-box` in IE 8/9.
3
+ * 2. Remove excess padding in IE 8/9.
4
+ */
5
+
6
+ input[type="checkbox"],
7
+ input[type="radio"] {
8
+ box-sizing: border-box; /* 1 */
9
+ padding: 0; /* 2 */
10
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Re-set default cursor for disabled elements.
3
+ */
4
+
5
+ button[disabled],
6
+ html input[disabled] {
7
+ cursor: default;
8
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Define consistent border, margin, and padding.
3
+ */
4
+
5
+ fieldset {
6
+ border: 1px solid #c0c0c0;
7
+ margin: 0 2px;
8
+ padding: 0.35em 0.625em 0.75em;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Remove inner padding and border in Firefox 4+.
3
+ */
4
+
5
+ button::-moz-focus-inner,
6
+ input::-moz-focus-inner {
7
+ border: 0;
8
+ padding: 0;
9
+ }
@@ -0,0 +1,14 @@
1
+ /**
2
+ * 1. Correct font family not being inherited in all browsers.
3
+ * 2. Correct font size not being inherited in all browsers.
4
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
5
+ */
6
+
7
+ button,
8
+ input,
9
+ select,
10
+ textarea {
11
+ font-family: inherit; /* 1 */
12
+ font-size: 100%; /* 2 */
13
+ margin: 0; /* 3 */
14
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
3
+ * the UA stylesheet.
4
+ */
5
+
6
+ button,
7
+ input {
8
+ line-height: normal;
9
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
3
+ * All other form control elements do not inherit `text-transform` values.
4
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
5
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
6
+ */
7
+
8
+ button,
9
+ select {
10
+ text-transform: none;
11
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * 1. Correct `color` not being inherited in IE 8/9.
3
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
4
+ */
5
+
6
+ legend {
7
+ border: 0; /* 1 */
8
+ padding: 0; /* 2 */
9
+ }
@@ -0,0 +1,22 @@
1
+ /**
2
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
3
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
4
+ * (include `-moz` to future-proof).
5
+ */
6
+
7
+ input[type="search"] {
8
+ -webkit-appearance: textfield; /* 1 */
9
+ -moz-box-sizing: content-box;
10
+ -webkit-box-sizing: content-box; /* 2 */
11
+ box-sizing: content-box;
12
+ }
13
+
14
+ /**
15
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
16
+ * on OS X.
17
+ */
18
+
19
+ input[type="search"]::-webkit-search-cancel-button,
20
+ input[type="search"]::-webkit-search-decoration {
21
+ -webkit-appearance: none;
22
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * 1. Remove default vertical scrollbar in IE 8/9.
3
+ * 2. Improve readability and alignment in all browsers.
4
+ */
5
+
6
+ textarea {
7
+ overflow: auto; /* 1 */
8
+ vertical-align: top; /* 2 */
9
+ }
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Prevents modern browsers from displaying `audio` without controls.
3
+ * Remove excess height in iOS5 devices.
4
+ */
5
+
6
+ audio:not([controls]) {
7
+ display: none; /* 1 */
8
+ height: 0; /* 2 */
9
+ }
@@ -0,0 +1,18 @@
1
+ /**
2
+ * Correct `block` display not defined in IE 8/9.
3
+ */
4
+
5
+ article,
6
+ aside,
7
+ details,
8
+ figcaption,
9
+ figure,
10
+ footer,
11
+ header,
12
+ hgroup,
13
+ main,
14
+ nav,
15
+ section,
16
+ summary {
17
+ display: block;
18
+ }
@@ -0,0 +1,9 @@
1
+ /*
2
+ * Address `[hidden]` styling not present in IE 8/9.
3
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
4
+ */
5
+
6
+ [hidden],
7
+ template {
8
+ display: none;
9
+ }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Correct `inline-block` display not defined in IE 8/9.
3
+ */
4
+
5
+ audio,
6
+ canvas,
7
+ video {
8
+ display: inline-block;
9
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Remove the gray background color from active links in IE 10.
3
+ */
4
+
5
+ a {
6
+ background: transparent;
7
+ }
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Address `outline` inconsistency between Chrome and other browsers.
3
+ */
4
+
5
+ a:focus {
6
+ outline: thin dotted;
7
+ }
8
+
9
+ /**
10
+ * Improve readability when focused and also mouse hovered in all browsers.
11
+ */
12
+
13
+ a:active,
14
+ a:hover {
15
+ outline: 0;
16
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Remove most spacing between table cells.
3
+ */
4
+
5
+ table {
6
+ border-collapse: collapse;
7
+ border-spacing: 0;
8
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
3
+ */
4
+
5
+ abbr[title] {
6
+ border-bottom: 1px dotted;
7
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Address styling not present in IE 8/9.
3
+ */
4
+
5
+ mark {
6
+ background: #ff0;
7
+ color: #000;
8
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
3
+ */
4
+
5
+ b,
6
+ strong {
7
+ font-weight: bold;
8
+ }
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Correct font family set oddly in Safari 5 and Chrome.
3
+ */
4
+
5
+ code,
6
+ kbd,
7
+ pre,
8
+ samp {
9
+ font-family: monospace, serif;
10
+ font-size: 1em;
11
+ }
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Address variable `h1` font-size and margin within `section` and `article`
3
+ * contexts in Firefox 4+, Safari 5, and Chrome.
4
+ */
5
+
6
+ h1 {
7
+ font-size: 2em;
8
+ margin: 0.67em 0;
9
+ }
10
+
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Address differences between Firefox and other browsers.
3
+ */
4
+
5
+ hr {
6
+ -moz-box-sizing: content-box;
7
+ box-sizing: content-box;
8
+ height: 0;
9
+ }
@@ -0,0 +1,8 @@
1
+ /**
2
+ * Address styling not present in IE 8/9.
3
+ */
4
+
5
+ mark {
6
+ background: #ff0;
7
+ color: #000;
8
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Improve readability of pre-formatted text in all browsers.
3
+ */
4
+
5
+ pre {
6
+ white-space: pre-wrap;
7
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Set consistent quote types.
3
+ */
4
+
5
+ q {
6
+ quotes: "\201C" "\201D" "\2018" "\2019";
7
+ }
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Address inconsistent and variable font size in all browsers.
3
+ */
4
+
5
+ small {
6
+ font-size: 80%;
7
+ }
@@ -0,0 +1,19 @@
1
+ /**
2
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
3
+ */
4
+
5
+ sub,
6
+ sup {
7
+ font-size: 75%;
8
+ line-height: 0;
9
+ position: relative;
10
+ vertical-align: baseline;
11
+ }
12
+
13
+ sup {
14
+ top: -0.5em;
15
+ }
16
+
17
+ sub {
18
+ bottom: -0.25em;
19
+ }
@@ -0,0 +1,5 @@
1
+ module Normality
2
+ class Engine < Rails::Engine
3
+ isolate_namespace Normality
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Normality
2
+ VERSION = '0.0.1'
3
+ end
data/lib/normality.rb ADDED
@@ -0,0 +1,4 @@
1
+ require 'normality/engine'
2
+
3
+ module Normality
4
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: normality
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Daniel Perez Alvarez
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-07-22 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 4.0.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 4.0.0
27
+ description: Include normalize.css functionality in your Rails app using SASS/SCSS
28
+ email:
29
+ - unindented@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - app/assets/stylesheets/_normality.scss
35
+ - app/assets/stylesheets/normality/addons/_box.scss
36
+ - app/assets/stylesheets/normality/base/_body.scss
37
+ - app/assets/stylesheets/normality/base/_html.scss
38
+ - app/assets/stylesheets/normality/embed/_img.scss
39
+ - app/assets/stylesheets/normality/embed/_svg.scss
40
+ - app/assets/stylesheets/normality/figures/_figure.scss
41
+ - app/assets/stylesheets/normality/forms/_buttons.scss
42
+ - app/assets/stylesheets/normality/forms/_checkbox-and-radio.scss
43
+ - app/assets/stylesheets/normality/forms/_disabled.scss
44
+ - app/assets/stylesheets/normality/forms/_fieldset.scss
45
+ - app/assets/stylesheets/normality/forms/_fix-focus-inner.scss
46
+ - app/assets/stylesheets/normality/forms/_fix-font.scss
47
+ - app/assets/stylesheets/normality/forms/_fix-line-height.scss
48
+ - app/assets/stylesheets/normality/forms/_fix-text-transform.scss
49
+ - app/assets/stylesheets/normality/forms/_legend.scss
50
+ - app/assets/stylesheets/normality/forms/_search.scss
51
+ - app/assets/stylesheets/normality/forms/_textarea.scss
52
+ - app/assets/stylesheets/normality/html5/_audio.scss
53
+ - app/assets/stylesheets/normality/html5/_blocks.scss
54
+ - app/assets/stylesheets/normality/html5/_hidden.scss
55
+ - app/assets/stylesheets/normality/html5/_inline-blocks.scss
56
+ - app/assets/stylesheets/normality/links/_fix-background.scss
57
+ - app/assets/stylesheets/normality/links/_fix-outline.scss
58
+ - app/assets/stylesheets/normality/tables/_fix-cell-spacing.scss
59
+ - app/assets/stylesheets/normality/typography/_abbr.scss
60
+ - app/assets/stylesheets/normality/typography/_dfn.scss
61
+ - app/assets/stylesheets/normality/typography/_fix-bolder.scss
62
+ - app/assets/stylesheets/normality/typography/_fix-monospace.scss
63
+ - app/assets/stylesheets/normality/typography/_headings.scss
64
+ - app/assets/stylesheets/normality/typography/_hr.scss
65
+ - app/assets/stylesheets/normality/typography/_mark.scss
66
+ - app/assets/stylesheets/normality/typography/_pre.scss
67
+ - app/assets/stylesheets/normality/typography/_q.scss
68
+ - app/assets/stylesheets/normality/typography/_small.scss
69
+ - app/assets/stylesheets/normality/typography/_sub-and-sup.scss
70
+ - lib/normality/engine.rb
71
+ - lib/normality/version.rb
72
+ - lib/normality.rb
73
+ - LICENSE
74
+ - README.md
75
+ homepage: https://github.com/unindented/normality
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - '>='
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - '>='
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.0.3
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: Include normalize.css in your Rails app
99
+ test_files: []