susy 2.2.12 → 2.2.13
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/VERSION +1 -1
- data/docs/changelog.rst +13 -0
- data/sass/susy/output/support/_support.scss +11 -1
- metadata +16 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 16757b77cbfa24dce9144e7b1f2bed5bc6182ef8
|
4
|
+
data.tar.gz: 90ab67593dbbaa3cfb652606b00d4ea9d990161a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bec48ae16f6f6b80a3341ebbaa30af80ca29aa44a722a0e228353cdcf206e8acb44c6cb77e4beb4d87691c53e3e00606913c9366668394b1f97e7ef30ba3d746
|
7
|
+
data.tar.gz: 04570352d1508ca7312052ead77c062e39289a8a6e2c70ab1a0daa86cb27221cb6443cf9bba7cc7f20c1f702378ba69adbc1a89b1386c95f801b57334d17ecb6
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.2.
|
1
|
+
2.2.13
|
data/docs/changelog.rst
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
Changelog
|
2
2
|
=========
|
3
3
|
|
4
|
+
2.2.13 - Apr 10 2018
|
5
|
+
--------------------
|
6
|
+
|
7
|
+
- Support Sass 3.5+ `get-function` requirements.
|
8
|
+
- Doc updates & typo fixes.
|
9
|
+
|
10
|
+
|
11
|
+
2.2.12 - Jan 25 2016
|
12
|
+
--------------------
|
13
|
+
|
14
|
+
- Fix bug in validation-errors.
|
15
|
+
|
16
|
+
|
4
17
|
2.2.11 - Jan 15 2016
|
5
18
|
--------------------
|
6
19
|
|
@@ -67,7 +67,17 @@
|
|
67
67
|
|
68
68
|
@each $_type, $_req in $requirements {
|
69
69
|
@each $_i in $_req {
|
70
|
-
|
70
|
+
|
71
|
+
$_pass : null;
|
72
|
+
|
73
|
+
// sass 3.5 or greater
|
74
|
+
@if function-exists('get-function') {
|
75
|
+
$_pass: call(get-function(unquote("#{$_type}-exists")), $_i);
|
76
|
+
}
|
77
|
+
// sass 3.4 or less
|
78
|
+
@else {
|
79
|
+
$_pass: call(unquote("#{$_type}-exists"), $_i);
|
80
|
+
}
|
71
81
|
|
72
82
|
@if not($_pass) {
|
73
83
|
$_fail: true;
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: susy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.2.
|
4
|
+
version: 2.2.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Miriam Eric Suzanne
|
@@ -14,20 +14,20 @@ dependencies:
|
|
14
14
|
name: sass
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
19
|
version: 3.3.0
|
20
|
-
- - <
|
20
|
+
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: '3.5'
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
26
26
|
requirements:
|
27
|
-
- -
|
27
|
+
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.3.0
|
30
|
-
- - <
|
30
|
+
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '3.5'
|
33
33
|
description: Susy is a toolkit for building layouts of all types with a simple, natural
|
@@ -42,6 +42,10 @@ extra_rdoc_files:
|
|
42
42
|
- README.md
|
43
43
|
- lib/susy.rb
|
44
44
|
files:
|
45
|
+
- LICENSE.txt
|
46
|
+
- README.md
|
47
|
+
- VERSION
|
48
|
+
- docs/changelog.rst
|
45
49
|
- lib/compass-susy.rb
|
46
50
|
- lib/susy.rb
|
47
51
|
- sass/_su.scss
|
@@ -101,37 +105,33 @@ files:
|
|
101
105
|
- templates/project/_grids.scss
|
102
106
|
- templates/project/manifest.rb
|
103
107
|
- templates/project/style.scss
|
104
|
-
- docs/changelog.rst
|
105
|
-
- LICENSE.txt
|
106
|
-
- README.md
|
107
|
-
- VERSION
|
108
108
|
homepage: http://susy.oddbird.net/
|
109
109
|
licenses:
|
110
110
|
- BSD-3-Clause
|
111
111
|
metadata: {}
|
112
112
|
post_install_message:
|
113
113
|
rdoc_options:
|
114
|
-
- --line-numbers
|
115
|
-
- --inline-source
|
116
|
-
- --title
|
114
|
+
- "--line-numbers"
|
115
|
+
- "--inline-source"
|
116
|
+
- "--title"
|
117
117
|
- Susy
|
118
|
-
- --main
|
118
|
+
- "--main"
|
119
119
|
- README.md
|
120
120
|
require_paths:
|
121
121
|
- lib
|
122
122
|
required_ruby_version: !ruby/object:Gem::Requirement
|
123
123
|
requirements:
|
124
|
-
- -
|
124
|
+
- - ">="
|
125
125
|
- !ruby/object:Gem::Version
|
126
126
|
version: '0'
|
127
127
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
128
128
|
requirements:
|
129
|
-
- -
|
129
|
+
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
131
|
version: '1.2'
|
132
132
|
requirements: []
|
133
133
|
rubyforge_project: susy
|
134
|
-
rubygems_version: 2.
|
134
|
+
rubygems_version: 2.6.12
|
135
135
|
signing_key:
|
136
136
|
specification_version: 3
|
137
137
|
summary: Responsive layout toolkit for Sass.
|