SassyLists 0.4.3 → 0.4.4

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.
data/CHANGELOG.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Changelog
2
2
 
3
- * `0.4.3`: improving `insert-nth()`, `prepend()`, `replace-nth()` and `replace()` to prevevent from adding empty lists
3
+ * `0.4.4`: fixing a typo in `purge()`
4
+ * `0.4.3`: improving `insert-nth()`, `prepend()`, `replace-nth()` and `replace()` to prevent from adding empty lists
4
5
  * `0.4.2`: improving `insert-nth()` and cleaning some indentation issues
5
6
  * `0.4.1`: improving `intersection()` perf
6
7
  * `0.4.0`: adding `intersection()`
@@ -18,4 +19,4 @@
18
19
  * `0.1.4`: fixing an issue with `sort()`, `is-symmetrical()`
19
20
  * `0.1.3`: fixing an issue with `sort()`
20
21
  * `0.1.2`: improving `debug()`
21
- * `0.1.1`: initial commit
22
+ * `0.1.1`: initial commit
data/lib/SassyLists.rb CHANGED
@@ -5,8 +5,8 @@ Compass::Frameworks.register('SassyLists', :path => extension_path)
5
5
  # Version is a number. If a version contains alphas, it will be created as a prerelease version
6
6
  # Date is in the form of YYYY-MM-DD
7
7
  module SassyLists
8
- VERSION = "0.4.3"
9
- DATE = "2013-11-17"
8
+ VERSION = "0.4.4"
9
+ DATE = "2013-12-03"
10
10
  end
11
11
 
12
12
  module Sass::Script::Functions
@@ -78,7 +78,7 @@
78
78
 
79
79
  @mixin debug($list) {
80
80
  body:before {
81
- content: debug($list, true) !important;
81
+ content: debug($list, true) !important;
82
82
 
83
83
  display: block !important;
84
84
  margin: 1em !important;
@@ -16,7 +16,7 @@
16
16
  $result: ();
17
17
 
18
18
  @each $item in $list {
19
- @if $item and $item != "" and $value != () {
19
+ @if $item and $item != "" and $item != () {
20
20
  $result: append($result, $item);
21
21
  }
22
22
  }
@@ -31,4 +31,4 @@
31
31
 
32
32
  @function clean($list) {
33
33
  @return purge($list);
34
- }
34
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: SassyLists
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.3
4
+ version: 0.4.4
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2013-11-17 00:00:00.000000000 Z
12
+ date: 2013-12-03 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: sass