normalize-scss 3.0.3 → 4.0.0.beta.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +1 -1
- data/CONTRIBUTING.md +3 -175
- data/README.md +48 -62
- data/bower.json +34 -0
- data/lib/normalize-scss.rb +15 -10
- data/normalize-scss.gemspec +18 -17
- data/package.json +44 -0
- data/sass/_normalize.scss +4 -0
- data/sass/normalize/_import-now.scss +11 -0
- data/sass/normalize/_normalize-mixin.scss +683 -0
- data/sass/normalize/_variables.scss +36 -0
- data/sass/normalize/_vertical-rhythm.scss +68 -0
- metadata +18 -24
- data/_normalize.scss +0 -670
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 79731e8ac41e22a946593374222916a9a7a61ffb
|
4
|
+
data.tar.gz: beb79b209bb640362f9f82989739f74af4a822bd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d4bb13e9e36e0baeb5235f05cbf10e3ce39d576dce8e1c8184244788e5f431821911d6a94147b26a1b1a43c20b8e1aed5543a8cba05124077ac300170ac667fd
|
7
|
+
data.tar.gz: a2190802eb25feb0ba77ebccce78332552ba05e381d8e4055e82ff9d0310993e26a1fa9db550ae437aad8a48683cf2ab35262966beb63cc09c1d182d34a2a779
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -1,177 +1,5 @@
|
|
1
|
-
# Contributing to normalize
|
1
|
+
# Contributing to normalize-scss
|
2
2
|
|
3
|
-
|
4
|
-
process easy and effective for everyone involved.
|
3
|
+
Updates to most CSS rules should be reported to Necolas' upstream [Normalize.css project](http://necolas.github.com/normalize.css/).
|
5
4
|
|
6
|
-
|
7
|
-
the developers managing and developing this open source project. In return,
|
8
|
-
they should reciprocate that respect in addressing your issue or assessing
|
9
|
-
patches and features.
|
10
|
-
|
11
|
-
|
12
|
-
## Using the issue tracker
|
13
|
-
|
14
|
-
The issue tracker is the preferred channel for [bug reports](#bugs),
|
15
|
-
[features requests](#features) and [submitting pull
|
16
|
-
requests](#pull-requests), but please respect the following restrictions:
|
17
|
-
|
18
|
-
* Please **do not** use the issue tracker for personal support requests.
|
19
|
-
|
20
|
-
* Please **do not** derail or troll issues. Keep the discussion on topic and
|
21
|
-
respect the opinions of others.
|
22
|
-
|
23
|
-
|
24
|
-
<a name="bugs"></a>
|
25
|
-
## Bug reports
|
26
|
-
|
27
|
-
A bug is a _demonstrable problem_ that is caused by the code in the repository.
|
28
|
-
Good bug reports are extremely helpful - thank you!
|
29
|
-
|
30
|
-
Guidelines for bug reports:
|
31
|
-
|
32
|
-
1. **Use the GitHub issue search** – check if the issue has already been
|
33
|
-
reported.
|
34
|
-
|
35
|
-
2. **Check if the issue has been fixed** – try to reproduce it using the
|
36
|
-
latest `master` branch in the repository.
|
37
|
-
|
38
|
-
3. **Isolate the problem** – create a live example (e.g., on
|
39
|
-
[Codepen](http://codepen.io)) of a [reduced test
|
40
|
-
case](http://css-tricks.com/6263-reduced-test-cases/).
|
41
|
-
|
42
|
-
A good bug report shouldn't leave others needing to chase you up for more
|
43
|
-
information. Please try to be as detailed as possible in your report. What is
|
44
|
-
your environment? What steps will reproduce the issue? What browser(s) and OS
|
45
|
-
experience the problem? What would you expect to be the outcome? All these
|
46
|
-
details will help people to fix any potential bugs.
|
47
|
-
|
48
|
-
Example:
|
49
|
-
|
50
|
-
> Short and descriptive example bug report title
|
51
|
-
>
|
52
|
-
> A summary of the issue and the browser/OS environment in which it occurs. If
|
53
|
-
> suitable, include the steps required to reproduce the bug.
|
54
|
-
>
|
55
|
-
> 1. This is the first step
|
56
|
-
> 2. This is the second step
|
57
|
-
> 3. Further steps, etc.
|
58
|
-
>
|
59
|
-
> `<url>` - a link to the reduced test case
|
60
|
-
>
|
61
|
-
> Any other information you want to share that is relevant to the issue being
|
62
|
-
> reported. This might include the lines of code that you have identified as
|
63
|
-
> causing the bug, and potential solutions (and your opinions on their
|
64
|
-
> merits).
|
65
|
-
|
66
|
-
|
67
|
-
<a name="features"></a>
|
68
|
-
## Feature requests
|
69
|
-
|
70
|
-
Feature requests are welcome. But take a moment to find out whether your idea
|
71
|
-
fits with the scope and aims of the project. It's up to *you* to make a strong
|
72
|
-
case to convince the project's developers of the merits of this feature. Please
|
73
|
-
provide as much detail and context as possible.
|
74
|
-
|
75
|
-
|
76
|
-
<a name="pull-requests"></a>
|
77
|
-
## Pull requests
|
78
|
-
|
79
|
-
Good pull requests - patches, improvements, new features - are a fantastic
|
80
|
-
help. They should remain focused in scope and avoid containing unrelated
|
81
|
-
commits.
|
82
|
-
|
83
|
-
**Please ask first** before embarking on any significant work, otherwise you
|
84
|
-
risk spending a lot of time working on something that the project's developers
|
85
|
-
might not want to merge into the project.
|
86
|
-
|
87
|
-
Please adhere to the coding conventions used throughout a project (whitespace,
|
88
|
-
accurate comments, etc.) and any other requirements (such as test coverage).
|
89
|
-
|
90
|
-
Follow this process if you'd like your work considered for inclusion in the
|
91
|
-
project:
|
92
|
-
|
93
|
-
1. [Fork](http://help.github.com/fork-a-repo/) the project, clone your fork,
|
94
|
-
and configure the remotes:
|
95
|
-
|
96
|
-
```bash
|
97
|
-
# Clone your fork of the repo into the current directory
|
98
|
-
git clone https://github.com/<your-username>/normalize.css
|
99
|
-
# Navigate to the newly cloned directory
|
100
|
-
cd normalize.css
|
101
|
-
# Assign the original repo to a remote called "upstream"
|
102
|
-
git remote add upstream https://github.com/necolas/normalize.css
|
103
|
-
```
|
104
|
-
|
105
|
-
2. If you cloned a while ago, get the latest changes from upstream:
|
106
|
-
|
107
|
-
```bash
|
108
|
-
git checkout master
|
109
|
-
git pull upstream master
|
110
|
-
```
|
111
|
-
|
112
|
-
3. Never work directly on `master`. Create a new topic branch (off the latest
|
113
|
-
version of `master`) to contain your feature, change, or fix:
|
114
|
-
|
115
|
-
```bash
|
116
|
-
git checkout -b <topic-branch-name>
|
117
|
-
```
|
118
|
-
|
119
|
-
4. Commit your changes in logical chunks. Please adhere to these [git commit
|
120
|
-
message conventions](http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html)
|
121
|
-
or your code is unlikely be merged into the main project. Use Git's
|
122
|
-
[interactive rebase](https://help.github.com/articles/interactive-rebase)
|
123
|
-
feature to tidy up your commits before making them public.
|
124
|
-
|
125
|
-
Make sure to add a test to the `test.html` file if appropriate, and test
|
126
|
-
your change in all supported browsers.
|
127
|
-
|
128
|
-
5. Locally rebase the upstream development branch into your topic branch:
|
129
|
-
|
130
|
-
```bash
|
131
|
-
git pull --rebase upstream master
|
132
|
-
```
|
133
|
-
|
134
|
-
6. Push your topic branch up to your fork:
|
135
|
-
|
136
|
-
```bash
|
137
|
-
git push origin <topic-branch-name>
|
138
|
-
```
|
139
|
-
|
140
|
-
10. [Open a Pull Request](https://help.github.com/articles/using-pull-requests/)
|
141
|
-
with a clear title and description.
|
142
|
-
|
143
|
-
Please submit a separate pull request for any appropriate changes required
|
144
|
-
in the `v1` branch for legacy browsers.
|
145
|
-
|
146
|
-
**IMPORTANT**: By submitting a patch, you agree to allow the project owner to
|
147
|
-
license your work under the same license as that used by the project.
|
148
|
-
|
149
|
-
|
150
|
-
<a name="maintainers"></a>
|
151
|
-
## Maintainers
|
152
|
-
|
153
|
-
If you have commit access, please follow this process for merging patches and
|
154
|
-
cutting new releases.
|
155
|
-
|
156
|
-
### Accepting patches
|
157
|
-
|
158
|
-
1. Check that a patch is within the scope and philosophy of the project.
|
159
|
-
2. Check that a patch has any necessary tests and a proper, descriptive commit
|
160
|
-
message.
|
161
|
-
3. Test the patch locally.
|
162
|
-
4. Do not use GitHub's merge button. Apply the patch to `master` locally
|
163
|
-
(either via `git am` or by checking the whole branch out). Amend minor
|
164
|
-
problems with the author's original commit if necessary. Then push to GitHub.
|
165
|
-
5. If a patch should be included in `v1`, cherry-pick the commits or manually
|
166
|
-
apply if all else fails.
|
167
|
-
|
168
|
-
### Releasing a new version
|
169
|
-
|
170
|
-
1. Include all new functional changes in the CHANGELOG.
|
171
|
-
2. Use a dedicated commit to increment the version. The version needs to be
|
172
|
-
added to the CHANGELOG (inc. date), and the `bower.json`, `component.json`,
|
173
|
-
and `normalize.css` files.
|
174
|
-
3. The commit message must be of `v0.0.0` format.
|
175
|
-
4. Create an annotated tag for the version: `git tag -m "v0.0.0" 0.0.0`.
|
176
|
-
5. Push the changes and tags to GitHub: `git push --tags origin master`
|
177
|
-
6. Checkout the `gh-pages` branch and follow the instructions in the README.
|
5
|
+
Updates to the Sass should be reported in the [Normalize-scss project](https://github.com/JohnAlbin/normalize-scss/).
|
data/README.md
CHANGED
@@ -1,45 +1,31 @@
|
|
1
|
-
|
1
|
+
# normalize-scss
|
2
2
|
|
3
|
-
|
4
|
-
It combines normalize.css v3.0.3 and normalize v1.1.3.
|
3
|
+
## Latest versions
|
5
4
|
|
6
|
-
|
7
|
-
|
5
|
+
For use with… | normalize-scss version
|
6
|
+
-----------------------------|-----------------------
|
7
|
+
Sass 3.4 or libSass | [4.0.0-beta.1](https://github.com/JohnAlbin/normalize-scss/releases/tag/4.0.0-beta.1)<br> combining normalize.css v3.0.3 with v1.1.3
|
8
|
+
Ruby Sass 3.3 + Compass 1.0 | [3.0.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/3.0.3)<br> combining normalize.css v3.0.3 with v1.1.3
|
9
|
+
Ruby Sass 3.2 + Compass 0.12 | [2.2.0+normalize.2.1.3](https://github.com/JohnAlbin/normalize-scss/releases/tag/2.2.0%2Bnormalize.2.1.3)<br> combining normalize.css v2.1.3 with v1.1.3
|
8
10
|
|
9
|
-
The
|
10
|
-
It combines normalize.css v2.1.3 and normalize v1.1.3.
|
11
|
+
## The Sass port of normalize.css
|
11
12
|
|
12
|
-
|
13
|
+
__This project is the Sass version of Normalize.css__, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website. To learn about why Normalize.css is so amazing, skip to the "normalize.css" section below.
|
13
14
|
|
14
|
-
|
15
|
-
HTML element and attribute rulesets to normalize styles across all browsers.
|
16
|
-
This port aims to use the best partials from Compass to make Normalize even
|
17
|
-
easier to integrate with your website. To learn about why Normalize.css is so
|
18
|
-
amazing, skip to the "normalize.css" section below.
|
15
|
+
This Sass port currently utilizes:
|
19
16
|
|
20
|
-
|
17
|
+
* Browser support variables: Allowing you to easily add/drop support for any browser by modifying a single Sass variable.
|
18
|
+
* Vertical rhythm mixins: Allowing you to alter the font-size, line-height and margins in Normalize’s output without hacking the library.
|
21
19
|
|
22
|
-
|
23
|
-
* CSS3 Box Sizing mixin
|
24
|
-
* Vertical Rhythm mixins
|
20
|
+
In addition, Normalize.css has 2 major versions: version 3 (without “legacy browser” support) and version 1 (with support for IE 6/7, etc.) This Sass port combines the two versions into one file so that you can easily toggle between the two versions using its browser support variables.
|
25
21
|
|
26
|
-
|
27
|
-
browser support) and version 1 (with support for IE 6/7, etc.) This Compass port
|
28
|
-
combines the two versions into one file so that you can easily toggle between
|
29
|
-
the two versions using Compass' Browser Support variables.
|
30
|
-
|
31
|
-
Did a client wait until the last minute to mention their CEO uses IE 6? Simply
|
32
|
-
update your `$browser-minimum-versions` variable and recompile your Sass files.
|
33
|
-
Details can be found at https://github.com/JohnAlbin/normalize-scss/wiki
|
22
|
+
Did a client wait until the last minute to mention their CEO uses IE 6? Simply update your `$support-for` variable and recompile your Sass files. Details can be found at https://github.com/JohnAlbin/normalize-scss/wiki
|
34
23
|
|
35
24
|
# normalize.css v3
|
36
25
|
|
37
|
-
Normalize.css is a customisable CSS file that makes browsers render all
|
38
|
-
elements more consistently and in line with modern standards.
|
26
|
+
Normalize.css is a customisable CSS file that makes browsers render all elements more consistently and in line with modern standards.
|
39
27
|
|
40
|
-
The project relies on researching the differences between default browser
|
41
|
-
styles in order to precisely target only the styles that need or benefit from
|
42
|
-
normalizing.
|
28
|
+
The project relies on researching the differences between default browser styles in order to precisely target only the styles that need or benefit from normalizing.
|
43
29
|
|
44
30
|
[View the test file](http://necolas.github.io/normalize.css/latest/test.html)
|
45
31
|
|
@@ -58,29 +44,36 @@ Install using one of the following methods:
|
|
58
44
|
* Download directly from the [project page](https://github.com/JohnAlbin/normalize-scss/releases).
|
59
45
|
* Install with [npm](http://npmjs.org/): `npm install --save normalize-scss`
|
60
46
|
* Install with [Bower](http://bower.io/): `bower install --save normalize.scss`
|
61
|
-
* Install with [
|
62
|
-
|
63
|
-
`gem install normalize-scss` Note: if you want to alter the _normalize.scss
|
64
|
-
file after installation (see "how to use it" below), you can use the
|
65
|
-
`gem list --details normalize-scss` command to show you where the
|
66
|
-
normalize-scss files were installed.
|
47
|
+
* Install with [Ruby Gem](https://rubygems.org/gems/normalize-scss): `gem install normalize-scss`<br>
|
48
|
+
and, if using Compass, add `require "normalize-scss"` to your config.rb file. Note: if you want to alter the _normalize.scss file after installation (see "how to use it" below), you can use the `gem list --details normalize-scss` command to show you where the normalize-scss files were installed.
|
67
49
|
|
68
50
|
## How to use it
|
69
51
|
|
70
|
-
There is a fantastic introduction to the project and brief instructions how to
|
71
|
-
|
52
|
+
There is a fantastic introduction to the project and brief instructions how to use it in the [About normalize.css article](http://nicolasgallagher.com/about-normalize-css/).
|
53
|
+
|
54
|
+
You can use the Sass port of Normalize in one of several methods, following the "About normalize.css" article's suggestions:
|
55
|
+
|
56
|
+
__Approach 1:__ Download and use normalize-scss as a starting point for your own project's base Sass, customising the values to match the design's requirements. (The best approach, _IMO_.)
|
57
|
+
1. Copy the normalize-scss files to your sass directory so that you can alter it
|
58
|
+
as you include it in your project. To aid with this method, normalize-scss
|
59
|
+
includes several ready-made "fork" versions:
|
60
|
+
* [fork-versions/default](fork-versions/default) - Fork for libSass or Ruby Sass
|
61
|
+
* [fork-versions/ruby-sass-compass](fork-versions/ruby-sass-compass) - Fork for Ruby Sass with Compass
|
62
|
+
* [fork-versions/typey](fork-versions/typey) - Fork with Typey
|
63
|
+
* fork-versions/typey-kss - Fork with Typey and KSS comments
|
64
|
+
2. The normalize-scss code uses the `support-for` module, so add it
|
72
65
|
|
73
|
-
|
66
|
+
__Approach 2:__ Install and include normalize-scss untouched and then build upon it, overriding the defaults later in your Sass when necessary. Just import normalize-scss like any normal Sass module by:
|
67
|
+
1. Set variables to override the default normalize-scss variables.
|
68
|
+
2. Import with `@import "normalize";`
|
69
|
+
3. Output the CSS rules with `@include normalize();`
|
74
70
|
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
requirements. (The best approach, _IMO_.)
|
82
|
-
* __Approach 2:__ include `_normalize.scss` untouched and build upon it,
|
83
|
-
overriding the defaults later in your Sass when necessary.
|
71
|
+
Alternatively, you can import normalize-scss immediately into your main Sass file without needing to use the `normalize()` mixin by:
|
72
|
+
|
73
|
+
1. (Optionally) set variables to override the default normalize-scss variables.
|
74
|
+
2. Import with `@import "normalize/import-now";`
|
75
|
+
|
76
|
+
Note: if you use [wiredep](https://github.com/taptapship/wiredep), normalize-scss's bower.json points at the normalize/import-now Sass partial. If you don't wish to immediately output the CSS, you will need to override the Sass partial that wiredep grabs from normalize-scss.
|
84
77
|
|
85
78
|
## Browser support
|
86
79
|
|
@@ -91,8 +84,8 @@ To use the Compass port of Normalize, simply:
|
|
91
84
|
* Apple Safari 6+
|
92
85
|
* Internet Explorer 6+
|
93
86
|
|
94
|
-
The exact browsers supported in your project is controlled by
|
95
|
-
variables. See https://github.com/JohnAlbin/normalize-scss/wiki
|
87
|
+
The exact browsers supported in your project is controlled by the browser
|
88
|
+
support variables. See https://github.com/JohnAlbin/normalize-scss/wiki
|
96
89
|
|
97
90
|
## Extended details
|
98
91
|
|
@@ -132,32 +125,25 @@ Adding `border: 0` corrects an IE 8–11 bug where `color` (yes, `color`) is not
|
|
132
125
|
inherited by `legend`.
|
133
126
|
|
134
127
|
## Contributing
|
135
|
-
Please read Necolas' [contributing
|
136
|
-
guidelines](CONTRIBUTING.md).
|
128
|
+
Please read Necolas' [contributing guidelines](https://github.com/necolas/normalize.css/blob/master/CONTRIBUTING.md).
|
137
129
|
|
138
|
-
Updates to most CSS rules should be reported to Necolas' upstream [Normalize.css
|
139
|
-
project](http://necolas.github.com/normalize.css/). Updates to the Sass should
|
140
|
-
be reported in the [Normalize-scss project](https://github.com/JohnAlbin/normalize-scss/).
|
130
|
+
Updates to most CSS rules should be reported to Necolas' upstream [Normalize.css project](http://necolas.github.com/normalize.css/). Updates to the Sass should be reported in the [Normalize-scss project](https://github.com/JohnAlbin/normalize-scss/).
|
141
131
|
|
142
132
|
## Acknowledgements
|
143
133
|
|
144
134
|
Normalize.css is a project by [Nicolas Gallagher](https://github.com/necolas),
|
145
135
|
co-created with [Jonathan Neal](https://github.com/jonathantneal).
|
146
136
|
|
147
|
-
This Sass
|
137
|
+
This Sass port is a project by [John Albin Wilkins](http://john.albin.net).
|
148
138
|
|
149
139
|
## Other ports of Normalize.css
|
150
140
|
|
151
|
-
For the record, there are several other Sass
|
152
|
-
Including:
|
141
|
+
For the record, there are several other Sass ports as well. Including:
|
153
142
|
|
154
143
|
* https://github.com/waynegraham/compass-normalize-plugin
|
155
144
|
* https://github.com/ksmandersen/compass-normalize
|
156
145
|
* https://github.com/hail2u/normalize.scss
|
157
146
|
* https://github.com/kristerkari/normalize.scss
|
158
|
-
|
159
|
-
Some of the above projects convert normalize into Sass mixins. That makes it
|
160
|
-
impossible to add Normalize using __Approach 1__ (by copying the file into your
|
161
|
-
website and customizing/overriding for your needs.)
|
147
|
+
* https://github.com/krisbulman/normalize-libsass
|
162
148
|
|
163
149
|
[](https://travis-ci.org/JohnAlbin/normalize-scss)
|
data/bower.json
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
{
|
2
|
+
"name": "normalize-scss",
|
3
|
+
"description": "This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website.",
|
4
|
+
"main": [
|
5
|
+
"sass/normalize/_import-now.scss"
|
6
|
+
],
|
7
|
+
"authors": [
|
8
|
+
"John Albin Wilkins <virtually.johnalbin@gmail.com> (http://john.albin.net/)"
|
9
|
+
],
|
10
|
+
"license": "(MIT OR GPL-2.0)",
|
11
|
+
"keywords": [
|
12
|
+
"sass",
|
13
|
+
"normalize",
|
14
|
+
"reset",
|
15
|
+
"typography",
|
16
|
+
"design",
|
17
|
+
"ui"
|
18
|
+
],
|
19
|
+
"homepage": "https://github.com/JohnAlbin/normalize-scss",
|
20
|
+
"ignore": [
|
21
|
+
"**/.*",
|
22
|
+
"CHANGELOG.md",
|
23
|
+
"CONTRIBUTING.md",
|
24
|
+
"lib",
|
25
|
+
"node_modules",
|
26
|
+
"normalize-scss.gemspec",
|
27
|
+
"sache.json",
|
28
|
+
"test.html",
|
29
|
+
"test"
|
30
|
+
],
|
31
|
+
"dependencies": {
|
32
|
+
"support-for": "~1.0.2"
|
33
|
+
}
|
34
|
+
}
|
data/lib/normalize-scss.rb
CHANGED
@@ -1,12 +1,17 @@
|
|
1
|
-
require 'compass'
|
2
|
-
|
3
1
|
project_path = File.join(File.dirname(__FILE__), '..')
|
4
|
-
stylesheets_path = File.join(project_path)
|
5
|
-
templates_path = File.join(project_path, 'templates')
|
2
|
+
stylesheets_path = File.join(project_path, 'sass')
|
6
3
|
|
7
|
-
Compass
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
)
|
4
|
+
if (defined? Compass)
|
5
|
+
Compass::Frameworks.register(
|
6
|
+
'normalize-scss',
|
7
|
+
:path => project_path,
|
8
|
+
:stylesheets_directory => stylesheets_path
|
9
|
+
)
|
10
|
+
else
|
11
|
+
# Compass not defined, register the Sass path via an environment variable.
|
12
|
+
if ENV.has_key?('SASS_PATH')
|
13
|
+
ENV['SASS_PATH'] = ENV['SASS_PATH'] + File::PATH_SEPARATOR + stylesheets_path
|
14
|
+
else
|
15
|
+
ENV['SASS_PATH'] = stylesheets_path
|
16
|
+
end
|
17
|
+
end
|
data/normalize-scss.gemspec
CHANGED
@@ -1,31 +1,32 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
2
|
|
3
|
-
Gem::Specification.new do |
|
4
|
-
|
3
|
+
Gem::Specification.new do |spec|
|
4
|
+
spec.name = 'normalize-scss'
|
5
5
|
|
6
|
-
|
7
|
-
|
6
|
+
spec.summary = %q{The Sass version of Normalize.css}
|
7
|
+
spec.description = %q{This is the Sass version of Normalize.css, a collection of HTML element and attribute rulesets to normalize styles across all browsers. This port aims to use a light dusting of Sass to make Normalize even easier to integrate with your website.}
|
8
8
|
|
9
|
-
|
10
|
-
|
9
|
+
spec.homepage = 'https://github.com/JohnAlbin/normalize-scss'
|
10
|
+
spec.rubyforge_project =
|
11
11
|
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
spec.version = '4.0.0.beta.1'
|
13
|
+
spec.date = '2015-11-18'
|
14
|
+
spec.licenses = ['GPL-2']
|
15
15
|
|
16
|
-
|
17
|
-
|
16
|
+
spec.authors = ['John Albin Wilkins']
|
17
|
+
spec.email = 'virtually.johnalbin@gmail.com'
|
18
18
|
|
19
|
-
|
20
|
-
|
19
|
+
spec.add_runtime_dependency('sass', '~> 3.3')
|
20
|
+
spec.add_runtime_dependency('support-for', '~> 1.0')
|
21
21
|
|
22
|
-
|
23
|
-
|
22
|
+
spec.files = `git ls-files`.split($/).select {|f| File.exist?(f) && f =~ %r{^(lib|sass)/} }
|
23
|
+
spec.files += %w(
|
24
|
+
bower.json
|
24
25
|
CHANGELOG.md
|
25
26
|
CONTRIBUTING.md
|
26
|
-
lib/normalize-scss.rb
|
27
27
|
LICENSE.md
|
28
28
|
normalize-scss.gemspec
|
29
|
+
package.json
|
29
30
|
README.md
|
30
|
-
|
31
|
+
)
|
31
32
|
end
|