SassyLists 2.2.3 → 2.2.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ef339bb8e66dea3f3e4e17374e9a8f732bd4a20c
4
- data.tar.gz: 49a91b0d9d544442da7253098dd3bf4b53209eac
3
+ metadata.gz: 2464dce9bc1066ece55646376c68b82240a39042
4
+ data.tar.gz: 4e821f0b1cf4a01ece887915ae1ea3b8d1a7d709
5
5
  SHA512:
6
- metadata.gz: 255b789d17661d98be397e23d42fab0dddb7eba4b565de621e5f15fa7edc305e0f0b38af245ecaff2cc2cbfa3456524e1374910e1c12f619bb0e577e232c4361
7
- data.tar.gz: a022a8684c913f40b6fe29a8d9c0b1824a50d8580450c953c8dd9ef29dfbc1e78fcaa4cd3fe036ecdea7bf92f6d577ee0b5e42f0dbedf49b3f4d63e724af1c4f
6
+ metadata.gz: 61c5dab2d5cb0b74cb85de406e9f8b433f3209f46cd694a424231d0ef7fb9cb490b845cef9012f5933edaaa162153ddee2d7080a404782bc3d2b96e4c67a294d
7
+ data.tar.gz: 39b9159405197965e1cdb80bf14b2041bf4d3454a1ee6105b87c5b611e0b1f880f2112837b71da4531dc980fe1cc7e3f86deb8cfa990ac7eb6a4dd64abfb3075
data/CHANGELOG.md CHANGED
@@ -1,16 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ * `2.2.4`: fixing a documentation error
3
4
  * `2.2.3`: adding examples to documentation
4
5
  * `2.2.2`: fixing a bug with aliases for `sl-to-list()` and moved all comments to C-like
5
6
  * `2.2.1`: improving `sl-to-list()`'s performance
6
- * `2.2.0`:
7
+ * `2.2.0`:
7
8
  * adding `sl-range()`, `sl-is-single()`, `sl-has-values()`, `sl-has-multiple-values()`
8
9
  * updating `sl-sum()` and `sl-to-map()`
9
10
  * making the whole library depending on most of the previously created helpers
10
11
  * making most functions returning `list` type, even when returning a single value
11
12
  * `2.1.1`: fixing a tiny issue with dependency checker in `preprend()`
12
13
  * `2.1.0`: adding `sl-is-empty()`, `sl-to-list()` and `sl-comma-list()`
13
- * `2.0.0`:
14
+ * `2.0.0`:
14
15
  * adding `sl-to-map()`, `sl-every()` and `sl-some()`
15
16
  * adding and improved tests
16
17
  * prefixing all functions with `sl-`
data/lib/SassyLists.rb CHANGED
@@ -15,7 +15,7 @@ end
15
15
  # Version is a number. If a version contains alphas, it will be created as a prerelease version
16
16
  # Date is in the form of YYYY-MM-DD
17
17
  module SassyLists
18
- VERSION = "2.2.3"
19
- DATE = "2014-07-05"
18
+ VERSION = "2.2.4"
19
+ DATE = "2014-09-09"
20
20
  end
21
21
 
@@ -7,7 +7,6 @@
7
7
  *
8
8
  * @param {List} $list - list to update
9
9
  * @param {*} $value - value to remove
10
- * @param {Bool} $recursive - enable/disable recursion
11
10
  *
12
11
  * @example
13
12
  * sl-remove(a b c, a)
@@ -26,7 +25,7 @@
26
25
  * @requires sl-remove
27
26
  * @alias sl-remove
28
27
  */
29
-
28
+
30
29
  @function sl-without($list, $value) {
31
30
  @return sl-remove($list, $value);
32
31
  }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: SassyLists
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.3
4
+ version: 2.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Hugo Giraudel
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-05 00:00:00.000000000 Z
11
+ date: 2014-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass