SassyJSON 1.1.7 → 1.1.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +2 -1
- data/lib/SassyJSON.rb +2 -2
- data/stylesheets/decode/helpers/all/_value.scss +1 -1
- data/stylesheets/decode/helpers/color/_hsl.scss +1 -1
- data/stylesheets/decode/helpers/color/_rgb.scss +1 -1
- data/stylesheets/decode/helpers/map/_consume.scss +1 -1
- data/stylesheets/decode/helpers/string/_length.scss +1 -1
- data/stylesheets/decode/types/_list.scss +1 -1
- data/stylesheets/decode/types/_map.scss +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 23907d2ce1116b8c7b413f4a6cafa790bdadff72
|
4
|
+
data.tar.gz: 0b89f6f3a0bc1bf48f555741af8ed354402a3f15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b0f4973b82ff5423991a1e932983cf99306b33cf339422f9601556b9137bbd764cc5f54b9cae0dc5474d01924d9697b1fd4e9bba59903c45119f44fa44dee3d8
|
7
|
+
data.tar.gz: f74d427c1f7f6513299406fe515b8ebb26af5b8d457f7191d6d00283ac38bbaf699d027abdedab9072d92bb216377ade31ab8a5b66a37d1fec825ef1ff0e96bf
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# Changelog
|
2
|
-
* `1.1.
|
2
|
+
* `1.1.8`: Solved an issue with tabs
|
3
|
+
* `1.1.7`: Included cosmetic changes made after linting with [scss-lint](https://github.com/causes/scss-lint)
|
3
4
|
* `1.1.6`: JSON files that are loaded via `@import "data.json?varname` can be pretty printed now.
|
4
5
|
* `1.1.5`: Fixed `json-encode` mixin to keep `body::before` in the render tree. Making it possible to access via `getComputedStyle(document.body, ':before')`
|
5
6
|
* `1.1.4`: Small fix for the `npm` release
|
data/lib/SassyJSON.rb
CHANGED
@@ -7,6 +7,6 @@ Compass::Frameworks.register('SassyJSON', :path => extension_path)
|
|
7
7
|
# Version is a number. If a version contains alphas, it will be created as a prerelease version
|
8
8
|
# Date is in the form of YYYY-MM-DD
|
9
9
|
module SassyJSON
|
10
|
-
VERSION = "1.1.
|
11
|
-
DATE = "2014-
|
10
|
+
VERSION = "1.1.8"
|
11
|
+
DATE = "2014-06-01"
|
12
12
|
end
|
@@ -29,7 +29,7 @@
|
|
29
29
|
// Do it the Sass way and destruct a single item array to an element.
|
30
30
|
@return ($pointer + 1, if(length($list) == 1, nth($list, 1), $list));
|
31
31
|
}
|
32
|
-
@else if $token == " " {
|
32
|
+
@else if $token == " " or $token == " " {
|
33
33
|
$pointer: $pointer + 1;
|
34
34
|
}
|
35
35
|
@else if $token == "," {
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: SassyJSON
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Hugo Giraudel
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-06-01 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: Sass API for JSON
|
15
15
|
email:
|