support-for 1.0.4 → 1.0.5
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/package.json +6 -4
- data/sass/_support-for.scss +2 -2
- data/support-for.gemspec +2 -3
- metadata +4 -5
- data/eyeglass-exports.js +0 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a98ad6eb0fb700fb5daa4ab2d9d4f5ef4f0f6ff4
|
4
|
+
data.tar.gz: ad03ad8c04b680571c4518b1a4d2c816cac939e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d56f0b9ab20fa66e32c83410fce1cab0203015e6e9ba4854a8d4118b5e5b89cb5c8b40e281c5ae8ce9c14175987a436a7c2d9b45d920f07f620e9faadfb71fc
|
7
|
+
data.tar.gz: 217fa6ee0015d8025e4504f3bdc24f7a03871d0a6f385d649723b768f0f49f24629dc8a4b0492d4d545a534ca883c7e2ed4657d0ffaf3cd76602298d990987bf
|
data/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "support-for",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.5",
|
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": {
|
@@ -20,7 +20,8 @@
|
|
20
20
|
],
|
21
21
|
"main": "sass/_support-for.scss",
|
22
22
|
"eyeglass": {
|
23
|
-
"
|
23
|
+
"sassDir": "sass",
|
24
|
+
"exports": false,
|
24
25
|
"needs": "*"
|
25
26
|
},
|
26
27
|
"scripts": {
|
@@ -30,8 +31,9 @@
|
|
30
31
|
"license": "GPL-2.0",
|
31
32
|
"devDependencies": {
|
32
33
|
"chai": "^3.4.1",
|
33
|
-
"eslint": "^
|
34
|
+
"eslint": "^2.6.0",
|
35
|
+
"eyeglass": "^0.8.3",
|
34
36
|
"mocha": "^2.3.4",
|
35
|
-
"sassy-test": "^
|
37
|
+
"sassy-test": "^3.0.3"
|
36
38
|
}
|
37
39
|
}
|
data/sass/_support-for.scss
CHANGED
@@ -9,9 +9,9 @@ $support-for: (
|
|
9
9
|
'*': -4,
|
10
10
|
) !default;
|
11
11
|
|
12
|
-
// Set the current version number for all browsers. As of: 2016-
|
12
|
+
// Set the current version number for all browsers. As of: 2016-04-04
|
13
13
|
$support-for-current-browser-version: (
|
14
|
-
chrome:
|
14
|
+
chrome: 49, // https://en.wikipedia.org/wiki/Google_Chrome_release_history
|
15
15
|
edge: 25, // https://en.wikipedia.org/wiki/Microsoft_Edge
|
16
16
|
firefox: 45, // https://en.wikipedia.org/wiki/Firefox_release_history
|
17
17
|
ie: 11, // https://en.wikipedia.org/wiki/Internet_Explorer_versions
|
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 = '2016-
|
12
|
+
spec.version = '1.0.5'
|
13
|
+
spec.date = '2016-04-04'
|
14
14
|
spec.licenses = ['GPL-2.0']
|
15
15
|
|
16
16
|
spec.authors = ['John Albin Wilkins']
|
@@ -21,7 +21,6 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.files = `git ls-files`.split($/).select {|f| File.exist?(f) && f =~ %r{^(lib|sass)/} }
|
22
22
|
spec.files += %w(
|
23
23
|
bower.json
|
24
|
-
eyeglass-exports.js
|
25
24
|
LICENSE.md
|
26
25
|
package.json
|
27
26
|
README.md
|
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.5
|
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: 2016-
|
11
|
+
date: 2016-04-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
@@ -33,7 +33,6 @@ files:
|
|
33
33
|
- LICENSE.md
|
34
34
|
- README.md
|
35
35
|
- bower.json
|
36
|
-
- eyeglass-exports.js
|
37
36
|
- lib/support-for.rb
|
38
37
|
- package.json
|
39
38
|
- sass/_support-for.scss
|
@@ -57,8 +56,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
57
56
|
- !ruby/object:Gem::Version
|
58
57
|
version: '0'
|
59
58
|
requirements: []
|
60
|
-
rubyforge_project: 1.0.
|
61
|
-
rubygems_version: 2.6.
|
59
|
+
rubyforge_project: 1.0.5
|
60
|
+
rubygems_version: 2.6.2
|
62
61
|
signing_key:
|
63
62
|
specification_version: 4
|
64
63
|
summary: Add conditional browser support to your Sass module
|