support-for 1.0.2 → 1.0.3
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/README.md +15 -0
- data/package.json +6 -3
- data/support-for.gemspec +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 142dabfe8a3a7acbd01321233baee2b40f2421bb
|
4
|
+
data.tar.gz: c0aa9bafa18693f21d75f60e18d5fbab46f8e3f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: cbf9b7b8281f098456b2e5ba91cbb5e7349bf364ccee72fc230e30bf55ff00cf41f716f50654c807ee5d0ca640ae7b33f127b9fb2ee028604a212b9786ba2f31
|
7
|
+
data.tar.gz: 39066ac10836022dfa28001dc527a5ef2fc12ed4af67a64c80a1dce314679da6b79cd0e7adbbc3a4ba437db911650c41956a2aea4522c8b1fb16ba165d087691
|
data/README.md
CHANGED
@@ -49,6 +49,21 @@ Here are some example usages:
|
|
49
49
|
@import "normalize";
|
50
50
|
```
|
51
51
|
|
52
|
+
By the way, here's the default value of `$support-for`:
|
53
|
+
|
54
|
+
```scss
|
55
|
+
// Support the last 4 versions of all browsers except IE.
|
56
|
+
$support-for: (
|
57
|
+
chrome: -4,
|
58
|
+
edge: -4,
|
59
|
+
firefox: -4,
|
60
|
+
ie: 9,
|
61
|
+
opera: -4,
|
62
|
+
safari: -4,
|
63
|
+
'*': -4,
|
64
|
+
) !default;
|
65
|
+
```
|
66
|
+
|
52
67
|
### Update your Sass partials to use `support-for()`
|
53
68
|
|
54
69
|
If a Sass module tells you that it uses **support-for**, you just need to override the default value of the `$support-for` variable before you import that module. See the examples above to see some of your options.
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "support-for",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.3",
|
4
4
|
"description": "Allows Sass authors to conditionally add support for specific browser versions.",
|
5
5
|
"homepage": "https://github.com/JohnAlbin/support-for",
|
6
6
|
"bugs": {
|
@@ -12,13 +12,16 @@
|
|
12
12
|
},
|
13
13
|
"author": "John Albin Wilkins <virtually.johnalbin@gmail.com> (http://john.albin.net/)",
|
14
14
|
"keywords": [
|
15
|
+
"eyeglass-module",
|
16
|
+
"support-for",
|
15
17
|
"sass",
|
16
|
-
"browser",
|
18
|
+
"browser support",
|
17
19
|
"support"
|
18
20
|
],
|
19
21
|
"main": "sass/_support-for.scss",
|
20
22
|
"eyeglass": {
|
21
|
-
"exports": "eyeglass-exports.js"
|
23
|
+
"exports": "eyeglass-exports.js",
|
24
|
+
"needs": "^0.7.1"
|
22
25
|
},
|
23
26
|
"scripts": {
|
24
27
|
"test": "mocha",
|
data/support-for.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.homepage = 'https://github.com/JohnAlbin/support-for'
|
10
10
|
spec.rubyforge_project =
|
11
11
|
|
12
|
-
spec.version = '1.0.
|
13
|
-
spec.date = '2015-11-
|
12
|
+
spec.version = '1.0.3'
|
13
|
+
spec.date = '2015-11-24'
|
14
14
|
spec.licenses = ['GPL-2']
|
15
15
|
|
16
16
|
spec.authors = ['John Albin Wilkins']
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: support-for
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Albin Wilkins
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-11-
|
11
|
+
date: 2015-11-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
@@ -57,7 +57,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
57
|
- !ruby/object:Gem::Version
|
58
58
|
version: '0'
|
59
59
|
requirements: []
|
60
|
-
rubyforge_project: 1.0.
|
60
|
+
rubyforge_project: 1.0.3
|
61
61
|
rubygems_version: 2.4.8
|
62
62
|
signing_key:
|
63
63
|
specification_version: 4
|