breakpoint 2.3.0 → 2.3.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 187581b23b36b6c3c281fc34fcbe3c4132cf6bc7
4
- data.tar.gz: 1281f213b32e0bfa780dd060a569170b568d8f62
3
+ metadata.gz: ea2d03a4e01463ea1ae41b5f3b52d5cca388d603
4
+ data.tar.gz: 364a78b11720bcd783aa5a56a3350ac4e9982abe
5
5
  SHA512:
6
- metadata.gz: 371973f6a05ee72454db2f96c90c96e444e84e3d6992e2f0df8ca1c06707cc84ed1976713489ec91a2a4ec23c7df2cefd1614cc8dcdd58ac3c8926f7a4699774
7
- data.tar.gz: e7e13771c4fff147c92ee0303122081426906f399766217dbf8aa8d68a90786675e7d08b52a5285a77249c073505f83c991cbb03da598f268c41f6c5011f86b3
6
+ metadata.gz: 22959cd46b60d83ea6eb0340ef97534aff9c54c1c96db5d4176010979e37aa1d2174c4ecc29c0441e09045e77998169b1c38447ba861c498c816dfa17a268d83
7
+ data.tar.gz: 55c46febac5519b5f9a16ec8cd708a69362fd6dce141703109ef9a6fff6496daa7e5f0f4d4e0adfe5de4b972552e5eada4bf0047968caaee04e1d61a7405423c
@@ -3,6 +3,6 @@ require 'compass'
3
3
  Compass::Frameworks.register("breakpoint", :path => "#{File.dirname(__FILE__)}/..")
4
4
 
5
5
  module Breakpoint
6
- VERSION = "2.3.0"
7
- DATE = "2013-12-02"
6
+ VERSION = "2.3.1"
7
+ DATE = "2013-12-04"
8
8
  end
@@ -59,21 +59,20 @@
59
59
  }
60
60
  }
61
61
 
62
- @if length($contexts) == 0 or nth($contexts, 1) == false {
63
- $return: ('query': $query-string,
64
- 'fallback': $query-fallback,
65
- 'context holder': $private-breakpoint-context-holder,
66
- 'query count': $private-breakpoint-query-count
67
- );
68
- }
69
- @else {
62
+ $return: ('query': $query-string,
63
+ 'fallback': $query-fallback,
64
+ 'context holder': $private-breakpoint-context-holder,
65
+ 'query count': $private-breakpoint-query-count
66
+ );
67
+ @if length($contexts) > 0 and nth($contexts, 1) != false {
70
68
  @if $query-fallback != false {
71
69
  $context-setter: private-breakpoint-set-context('no-query', $query-fallback);
72
70
  }
73
-
71
+ $context-map: ();
74
72
  @each $context in $contexts {
75
- $return: map-merge($return, ($context: breakpoint-get-context($context)));
73
+ $context-map: map-merge($context-map, ($context: breakpoint-get-context($context)));
76
74
  }
75
+ $return: map-merge($return, (context: $context-map));
77
76
  }
78
77
 
79
78
  // Reset Global Private Breakpoint Context
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: breakpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mason Wendell
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-12-02 00:00:00.000000000 Z
12
+ date: 2013-12-04 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass
@@ -68,7 +68,9 @@ files:
68
68
  - stylesheets/breakpoint/parsers/single/_default.scss
69
69
  - stylesheets/breakpoint/parsers/triple/_default.scss
70
70
  homepage: https://github.com/Team-Sass/breakpoint
71
- licenses: []
71
+ licenses:
72
+ - MIT
73
+ - GPL-2.0
72
74
  metadata: {}
73
75
  post_install_message:
74
76
  rdoc_options: []