flint-gs 2.1.3 → 2.1.4

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: fe132133d8247fbb9689561ec3245bf01fc4fa5b
4
- data.tar.gz: 8efaad6a394ce6c061a153c9c551d6583229ef7e
3
+ metadata.gz: 62fdbbd2f7bcd9e44852bb8a9e980792ee50d529
4
+ data.tar.gz: e0866a6bdf45667960b289a7df5dc6199091c9cb
5
5
  SHA512:
6
- metadata.gz: ea33f4249e749ac226b3c3c999a2cdf9966ebca57b9d4e307ae7c3f9cf800845b8c747675140dca1fa2a547ac09131ab9abdb5cf7a9cb9cb4cc2f3399a0902a7
7
- data.tar.gz: 2a0b350432106210be62b2b6df6efa26fa231c3d2c0e01579603520ecfade85d60d1665e25019e40f6bd2546998fb2914fdf71851996d0d1a11194d17c657e86
6
+ metadata.gz: 8ef4fff7fe04af89319a0a4f22b41caecbd37fb37c836a2550e104720bdae96728fed3dbbac7850d09f8fa31f79e3b4d6b48e60a848b794b5944f4ef6caec232
7
+ data.tar.gz: cea6e7bf22b451b3dd7d7ec81a23c09461d7551d7a6c7c0cca5557939899b2e7294a4b9ad1bc4d9813ef03133638573b37413b431e25a267904b19b4738a9fe0
@@ -1,3 +1,3 @@
1
1
  module Flint
2
- VERSION = "2.1.3"
2
+ VERSION = "2.1.4"
3
3
  end
@@ -5,8 +5,8 @@
5
5
  ///
6
6
  /// @param {String} $key - key of breakpoint
7
7
  /// @param {Number} $span - span value of element
8
- /// @param {Number|String} $context (null) - context value of element
9
- /// @param {Number} $deduct (null) - subtract value out of final width
8
+ /// @param {Number|String} $context [null] - context value of element
9
+ /// @param {Number} $deduct [null] - subtract value out of final width
10
10
  ///
11
11
  /// @return {Map} - map of target and context result
12
12
  ///
@@ -5,7 +5,7 @@
5
5
  ///
6
6
  /// @param {String} $string - string that contains substring
7
7
  /// @param {String} $substring - substring to replace
8
- /// @param {String} $new-substring (" ") - new string to replace sub with
8
+ /// @param {String} $new-substring [" "] - new string to replace sub with
9
9
  ///
10
10
  /// @return {String}
11
11
  ///
@@ -4,8 +4,8 @@
4
4
  /// @access private
5
5
  ///
6
6
  /// @param {String} $string - string to perform on
7
- /// @param {String} $find (" ") - item to find which separates substrings
8
- /// @param {String} $ignore (",") - removes remaining string beyond item
7
+ /// @param {String} $find [" "] - item to find which separates substrings
8
+ /// @param {String} $ignore [","] - removes remaining string beyond item
9
9
  ///
10
10
  /// @return {List}
11
11
  ///
@@ -12,7 +12,7 @@
12
12
  @function flint-support-syntax-bem($selectors) {
13
13
  // Clean up selector, remove double underscores for spaces
14
14
  // add pseudo character to differentiate selectors
15
- $selectors: flint-replace-substring(inspect(unquote($selectors)), "__", "/");
15
+ $selectors: flint-replace-substring(unquote(inspect($selectors)), "__", "/");
16
16
  // Parse string back to list without pseudo character
17
17
  $selectors: flint-string-to-list($selectors, "/");
18
18
  // Define top-most parent of selector
@@ -3,9 +3,9 @@
3
3
  ///
4
4
  /// @access private
5
5
  ///
6
- /// @param {List} $list - list of items
7
- /// @param {String|List} $assert-types (null) - single or list of types to assert
8
- /// @param {Number} $assert-length (null) - assert length of list
6
+ /// @param {List} $list - list of items
7
+ /// @param {String|List} $assert-types [null] - single or list of types to assert
8
+ /// @param {Number} $assert-length [null] - assert length of list
9
9
  ///
10
10
  /// @return {Bool}
11
11
  ///
@@ -101,4 +101,4 @@ $flint__cached-values: () !global;
101
101
  ///
102
102
  /// @type Map
103
103
  ///
104
- $flint__cache-results: () !global;
104
+ $flint__cached-results: () !global;
@@ -3,7 +3,7 @@
3
3
  ///
4
4
  /// @access private
5
5
  ///
6
- /// @param {String} $type ("border-box") - border-box type
6
+ /// @param {String} $type ["border-box"] - border-box type
7
7
  ///
8
8
  /// @requires {Mixin} box-sizing - local mixin if available
9
9
  ///
@@ -95,8 +95,8 @@
95
95
  // Check for cached results
96
96
  //
97
97
  @if $calc-context != "auto" and $calc-span != 0 {
98
- @if map-has-key($flint__cache-results, "#{$calc-key, $calc-span, $calc-context, $calc-gutter, $i}") {
99
- $result: map-get($flint__cache-results, "#{$calc-key, $calc-span, $calc-context, $calc-gutter, $i}");
98
+ @if map-has-key($flint__cached-results, "#{$calc-key, $calc-span, $calc-context, $calc-gutter, $i}") {
99
+ $result: map-get($flint__cached-results, "#{$calc-key, $calc-span, $calc-context, $calc-gutter, $i}");
100
100
 
101
101
  // Get results
102
102
  $output-width-map: nth($result, 1);
@@ -218,7 +218,7 @@
218
218
 
219
219
  // Cache result
220
220
  @if $calc-context != "auto" and $calc-span != 0 and not $cached {
221
- $flint__cache-results: map-merge($flint__cache-results, (
221
+ $flint__cached-results: map-merge($flint__cached-results, (
222
222
  "#{$calc-key, $calc-span, $calc-context, $calc-gutter, $i}": ($output-width-map, $output-margin-right, $output-margin-left)
223
223
  )) !global;
224
224
  }
@@ -3,8 +3,8 @@
3
3
  ///
4
4
  /// @access private
5
5
  ///
6
- /// @param {String} $key (null) - alias of individual breakpoint
7
- /// @param {Number} $i (null) - index number if called from loop
6
+ /// @param {String} $key [null] - alias of individual breakpoint
7
+ /// @param {Number} $i [null] - index number if called from loop
8
8
  ///
9
9
  /// @group Internal Mixins
10
10
  ///
@@ -341,10 +341,10 @@
341
341
  ///
342
342
  /// @access public
343
343
  ///
344
- /// @param {String|Number|List} $key (null) - key of breakpoint, or shorthand span
345
- /// @param {String|Number|List} $span (null) - value of span for column, or shorthand context
346
- /// @param {String|Number} $context (null) - context value of span, or null for shorthand
347
- /// @param {String|List} $gutter (null) - alias for gutter modifier
344
+ /// @param {String|Number|List} $key [null] - key of breakpoint, or shorthand span
345
+ /// @param {String|Number|List} $span [null] - value of span for column, or shorthand context
346
+ /// @param {String|Number} $context [null] - context value of span, or null for shorthand
347
+ /// @param {String|List} $gutter [null] - alias for gutter modifier
348
348
  ///
349
349
  /// @throws - Error if list lengths do not match number of breakpoints (when using variable shorthands).
350
350
  ///
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flint-gs
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.3
4
+ version: 2.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ezekiel Gabrielse
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-03-16 00:00:00.000000000 Z
11
+ date: 2015-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -74,9 +74,11 @@ executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
+ - LICENSE
78
+ - README.md
79
+ - lib/flint.rb
77
80
  - lib/flint/functions.rb
78
81
  - lib/flint/version.rb
79
- - lib/flint.rb
80
82
  - stylesheets/_flint.scss
81
83
  - stylesheets/flint/config/_config.scss
82
84
  - stylesheets/flint/functions/_functions.scss
@@ -114,11 +116,12 @@ files:
114
116
  - stylesheets/flint/mixins/lib/_main.scss
115
117
  - stylesheets/flint/mixins/lib/_new-instance.scss
116
118
  - stylesheets/flint/mixins/lib/_print-instance.scss
117
- - LICENSE
118
- - README.md
119
- - tests/bootcamp/bower.json
120
119
  - tests/bootcamp/CHANGELOG.md
121
120
  - tests/bootcamp/CONTRIBUTING.md
121
+ - tests/bootcamp/Gruntfile.coffee
122
+ - tests/bootcamp/LICENSE.md
123
+ - tests/bootcamp/README.md
124
+ - tests/bootcamp/bower.json
122
125
  - tests/bootcamp/dist/_bootcamp.scss
123
126
  - tests/bootcamp/dist/bootcamp.coffee
124
127
  - tests/bootcamp/dist/core/functions/_actual.scss
@@ -158,10 +161,7 @@ files:
158
161
  - tests/bootcamp/dist/utils/_equal.scss
159
162
  - tests/bootcamp/dist/utils/_list-join.scss
160
163
  - tests/bootcamp/dist/utils/_power.scss
161
- - tests/bootcamp/Gruntfile.coffee
162
- - tests/bootcamp/LICENSE.md
163
164
  - tests/bootcamp/package.json
164
- - tests/bootcamp/README.md
165
165
  - tests/bootcamp/tasks/bootcamp.coffee
166
166
  - tests/bootcamp/test/core/functions/_actual.scss
167
167
  - tests/bootcamp/test/core/functions/_expect.scss
@@ -244,7 +244,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
244
244
  version: '0'
245
245
  requirements: []
246
246
  rubyforge_project: flint
247
- rubygems_version: 2.0.14
247
+ rubygems_version: 2.4.6
248
248
  signing_key:
249
249
  specification_version: 4
250
250
  summary: A highly advanced Sass grid framework designed for rapid responsive development.