flint-gs 1.11.2 → 1.12.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 27feb34a9193caf0e861942339f0b04c24f14c3c
|
4
|
+
data.tar.gz: ee72437bacb40e3d7ec674db1e7f433dc1eb3a7c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ee370744e8c89a0c138671cc6d030278f12e1943db1dc58cee2566d7e2fb7275aad1c1d2e7f3b68bba226ccf3cc165ef8868a1c14fd4d66936c2ee53320b3dbf
|
7
|
+
data.tar.gz: 1cd39fd0bcfa508a2a4499cbd5ba38c0c66935b72ffc44ff5e3e90c991f905cbf38c1f89ef5e529ea87bd498e17bdd17cd451eba5b819379a72ec959c63c5216
|
data/README.md
CHANGED
@@ -183,7 +183,7 @@ Outputs,
|
|
183
183
|
}
|
184
184
|
```
|
185
185
|
|
186
|
-
You may also define a container for a specific breakpoint, `@include _(desktop, container)`, as well as chain a clearfix and container call together with `@include _(container,
|
186
|
+
You may also define a container for a specific breakpoint, `@include _(desktop, container)`, as well as chain a clearfix and container call together with `@include _(container, clear)` or `@include _(<alias>, container, clear)`.
|
187
187
|
|
188
188
|
### Clear
|
189
189
|
|
@@ -938,6 +938,10 @@ If you make one that isn't here, let me know and I'll look into officially suppo
|
|
938
938
|
|
939
939
|
[Ezekiel Gabrielse](http://ezekielg.com)
|
940
940
|
|
941
|
+
## Contributing
|
942
|
+
|
943
|
+
As an open-source project, contributions are more than welcome, they're extremely helpful and actively encouraged. If you see any room for improvement, open an [issue](https://github.com/ezekg/flint/issues) or submit a [pull request](https://github.com/ezekg/flint/pulls). Also, make sure to take a look at the [contributing doc](CONTRIBUTING.md).
|
944
|
+
|
941
945
|
## License
|
942
946
|
|
943
947
|
Flint is available under the [MIT](http://opensource.org/licenses/MIT) license.
|
data/lib/flint.rb
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
// @param $value [number] : value
|
7
7
|
// @param $deep [number] : fetch deep value
|
8
8
|
// -------------------------------------------------------------------------------
|
9
|
-
// @return
|
9
|
+
// @return fetched literal | false
|
10
10
|
|
11
11
|
@function flint-get-instance-value($key, $value, $deep: null) {
|
12
12
|
@if not $deep {
|
@@ -2,12 +2,16 @@
|
|
2
2
|
//--------------------------------------------------------------------------------
|
3
3
|
// @param $index [number] : index of key
|
4
4
|
// -------------------------------------------------------------------------------
|
5
|
-
// @return
|
5
|
+
// @return matched key | false
|
6
6
|
|
7
7
|
@function flint-steal-key($index) {
|
8
|
-
@
|
9
|
-
@
|
10
|
-
@
|
8
|
+
@if flint-is-number($index) {
|
9
|
+
@for $n from 1 through (length(flint-map-fetch($flint, "config")) - 1) {
|
10
|
+
@each $key in nth(map-get($flint, "config"), $index) {
|
11
|
+
@return $key;
|
12
|
+
}
|
11
13
|
}
|
14
|
+
} @else {
|
15
|
+
@return false;
|
12
16
|
}
|
13
17
|
}
|
metadata
CHANGED
@@ -1,39 +1,37 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flint-gs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezekiel Gabrielse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-08-
|
11
|
+
date: 2014-08-29 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- -
|
17
|
+
- - ~>
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.3
|
19
|
+
version: '3.3'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- -
|
24
|
+
- - ~>
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.3
|
27
|
-
description: Flint is
|
28
|
-
|
26
|
+
version: '3.3'
|
27
|
+
description: Flint is a highly advanced Sass grid-system designed for rapid responsive
|
28
|
+
development.
|
29
29
|
email:
|
30
30
|
- ezekg@yahoo.com
|
31
31
|
executables: []
|
32
32
|
extensions: []
|
33
33
|
extra_rdoc_files: []
|
34
34
|
files:
|
35
|
-
- LICENSE
|
36
|
-
- README.md
|
37
35
|
- lib/flint.rb
|
38
36
|
- stylesheets/_flint.scss
|
39
37
|
- stylesheets/flint/config/_config.scss
|
@@ -73,7 +71,9 @@ files:
|
|
73
71
|
- stylesheets/flint/mixins/lib/_main.scss
|
74
72
|
- stylesheets/flint/mixins/lib/_new-instance.scss
|
75
73
|
- stylesheets/flint/mixins/lib/_print-instance.scss
|
76
|
-
|
74
|
+
- LICENSE
|
75
|
+
- README.md
|
76
|
+
homepage: http://flint.gs
|
77
77
|
licenses:
|
78
78
|
- MIT
|
79
79
|
metadata: {}
|
@@ -83,17 +83,17 @@ require_paths:
|
|
83
83
|
- lib
|
84
84
|
required_ruby_version: !ruby/object:Gem::Requirement
|
85
85
|
requirements:
|
86
|
-
- -
|
86
|
+
- - '>='
|
87
87
|
- !ruby/object:Gem::Version
|
88
88
|
version: '0'
|
89
89
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
90
90
|
requirements:
|
91
|
-
- -
|
91
|
+
- - '>='
|
92
92
|
- !ruby/object:Gem::Version
|
93
93
|
version: 1.3.6
|
94
94
|
requirements: []
|
95
95
|
rubyforge_project: flint
|
96
|
-
rubygems_version: 2.
|
96
|
+
rubygems_version: 2.0.14
|
97
97
|
signing_key:
|
98
98
|
specification_version: 4
|
99
99
|
summary: A powerful Sass grid-system designed for complex responsive layouts.
|