sassy-namespaces 0.1.4 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2f0ba13ac7f1f102185a1915d72e547e1e6dab21
4
- data.tar.gz: 115d8397527abc578eb4aa0647c9fdac24ab57a7
3
+ metadata.gz: 5de29c6930745583a511964cdd6bae9a00df96e6
4
+ data.tar.gz: aab7cb7d42c64e4e0a91854b83fa57fceb97ea4b
5
5
  SHA512:
6
- metadata.gz: 3bf0e6fdb51c153812e55171878311bac1cf1fbe5998113dfa9783de8d378571ad0e931d6da3117ad604e57b9d5070a3bcba9f745fd6b41ef0afe2547a088aa6
7
- data.tar.gz: bdeb1ef3e7adcd23aebdad42996c96bbb68fd10b545d72618f303dc5eb993eba06057f22057e119914ca2887579814b6c4ec0c9ad8abf7a739778a4f89f987b8
6
+ metadata.gz: 771e9dd0bd499a99caf00230d92b384c78dd6b8851d8a88160c83748b5c2b1548e85d6f59195bd55cb0c877f275ce495b4d00be2e42adba2a72acbcfa40d53c6
7
+ data.tar.gz: 718e25b61dba1ef6d6d672c0a219c06e1788eefa78a1a3364ea4fc056ab34f8faa72af0c587c6268999b057a7f7c43d929bba4c7329555cf4ba0bbfbc39bfa85
@@ -5,6 +5,6 @@ extension_path = File.expand_path(File.join(File.dirname(__FILE__), ".."))
5
5
  Compass::Frameworks.register('sassy-namespaces', :path => extension_path)
6
6
 
7
7
  module SassyNamespaces
8
- VERSION = "0.1.4"
8
+ VERSION = "0.1.5"
9
9
  DATE = "2014-03-18"
10
10
  end
@@ -54,15 +54,15 @@ $__sassy-namespaces: ();
54
54
  }
55
55
  }
56
56
 
57
- @function namespace($args...) {
58
- @return namespace-get($args...) or namespace-set($args...);
57
+ @function namespace($name, $args...) {
58
+ @return namespace-get($name, $args...) or namespace-set($name, $args...);
59
59
  }
60
60
 
61
- @mixin namespace-set($args...) {
61
+ @mixin namespace-set($name, $args...) {
62
62
  $namespace: namespace-set($name, $args...);
63
63
  }
64
64
 
65
- @mixin namespace-get($args...) {
65
+ @mixin namespace-get($name, $args...) {
66
66
  $namespace: namespace-get($name, $args...);
67
67
  }
68
68
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sassy-namespaces
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Clark