SassyJSON 1.0.7 → 1.0.8
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 +7 -0
- data/CHANGELOG.md +3 -1
- data/README.md +1 -1
- data/lib/SassyJSON.rb +2 -2
- data/{src → stylesheets}/SassyJSON.scss +0 -0
- data/{src → stylesheets}/decode/api/_json.scss +0 -0
- data/{src → stylesheets}/decode/decode.scss +0 -0
- data/{src → stylesheets}/decode/helpers/all/_throw.scss +0 -0
- data/{src → stylesheets}/decode/helpers/all/_value.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_color.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_get-color-value.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_hex-to-dec.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_hex.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_hsl.scss +0 -0
- data/{src → stylesheets}/decode/helpers/color/_rgb.scss +0 -0
- data/{src → stylesheets}/decode/helpers/map/_consume.scss +0 -0
- data/{src → stylesheets}/decode/helpers/number/_find-digits.scss +0 -0
- data/{src → stylesheets}/decode/helpers/number/_find-exponent.scss +0 -0
- data/{src → stylesheets}/decode/helpers/number/_find-integer.scss +0 -0
- data/{src → stylesheets}/decode/helpers/number/_pow.scss +0 -0
- data/{src → stylesheets}/decode/helpers/string/_find-ending-quote.scss +0 -0
- data/{src → stylesheets}/decode/helpers/string/_length.scss +0 -0
- data/{src → stylesheets}/decode/helpers/string/_strip-token.scss +0 -0
- data/{src → stylesheets}/decode/types/_bool.scss +0 -0
- data/{src → stylesheets}/decode/types/_list.scss +0 -0
- data/{src → stylesheets}/decode/types/_map.scss +0 -0
- data/{src → stylesheets}/decode/types/_null.scss +0 -0
- data/{src → stylesheets}/decode/types/_number.scss +0 -0
- data/{src → stylesheets}/decode/types/_string.scss +0 -0
- data/{src → stylesheets}/encode/api/_json.scss +0 -0
- data/{src → stylesheets}/encode/encode.scss +0 -0
- data/{src → stylesheets}/encode/helpers/_quote.scss +0 -0
- data/{src → stylesheets}/encode/mixins/_json.scss +0 -0
- data/{src → stylesheets}/encode/types/_bool.scss +0 -0
- data/{src → stylesheets}/encode/types/_color.scss +0 -0
- data/{src → stylesheets}/encode/types/_list.scss +0 -0
- data/{src → stylesheets}/encode/types/_map.scss +0 -0
- data/{src → stylesheets}/encode/types/_null.scss +0 -0
- data/{src → stylesheets}/encode/types/_number.scss +0 -0
- data/{src → stylesheets}/encode/types/_string.scss +0 -0
- metadata +43 -45
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 2e98929a83f93895b002599ecd322ae49b505b71
|
|
4
|
+
data.tar.gz: 24c7cd8e7f5a9664f9e6d367178fb33abf545155
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 063bb0ac7c360dadca97b5cbe775eeeb4063dc9e9376067e35c34ecf240fc2577f5d67fa12bc6ea9c4428d9d61bcbf35f7b2462ba78a50c091aec9dd363a0212
|
|
7
|
+
data.tar.gz: df0e9ae36fe86851dec82649c684c5a4ed90d1e47be658c3c4f0e8ba4a5f300f0195b88ce4f6779f31be269a64cb14ed1eeb7bbb34b4062a73c361969aa75db6
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
* `1.0.
|
|
3
|
+
* `1.0.8`: fixing a major issue in Ruby Gem
|
|
4
|
+
* `1.0.7`: minor fixes and stable Ruby Gem
|
|
5
|
+
* `1.0.6`: released a Ruby Gem
|
|
4
6
|
* `1.0.5`: improved the encoding mixin
|
|
5
7
|
* `1.0.4`: fixed an error in map parsing
|
|
6
8
|
* `1.0.3`: slightly edited the mixin to dump JSON to CSS
|
data/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SassyJSON [](http://badge.fury.io/js/sassyjson) [](http://badge.fury.io/js/sassyjson) [](http://badge.fury.io/rb/SassyJSON) [](https://travis-ci.org/HugoGiraudel/SassyJSON)
|
|
2
2
|
|
|
3
3
|
SassyJSON is a Sass-powered API for JSON. It provides you the classic `json-encode` and `json-decode` directly from your Sass files. We'll leave you the only judges of the point of this.
|
|
4
4
|
|
data/lib/SassyJSON.rb
CHANGED
|
@@ -5,8 +5,8 @@ Compass::Frameworks.register('SassyJSON', :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 SassyJSON
|
|
8
|
-
VERSION = "1.0.
|
|
9
|
-
DATE = "2014-01-
|
|
8
|
+
VERSION = "1.0.8"
|
|
9
|
+
DATE = "2014-01-21"
|
|
10
10
|
end
|
|
11
11
|
|
|
12
12
|
module Sass::Script::Functions
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: SassyJSON
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 1.0.8
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Hugo Giraudel
|
|
@@ -10,7 +9,7 @@ authors:
|
|
|
10
9
|
autorequire:
|
|
11
10
|
bindir: bin
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date: 2014-01-
|
|
12
|
+
date: 2014-01-21 00:00:00.000000000 Z
|
|
14
13
|
dependencies: []
|
|
15
14
|
description: Sass API for JSON
|
|
16
15
|
email:
|
|
@@ -23,65 +22,64 @@ files:
|
|
|
23
22
|
- README.md
|
|
24
23
|
- CHANGELOG.md
|
|
25
24
|
- lib/SassyJSON.rb
|
|
26
|
-
-
|
|
27
|
-
-
|
|
28
|
-
-
|
|
29
|
-
-
|
|
30
|
-
-
|
|
31
|
-
-
|
|
32
|
-
-
|
|
33
|
-
-
|
|
34
|
-
-
|
|
35
|
-
-
|
|
36
|
-
-
|
|
37
|
-
-
|
|
38
|
-
-
|
|
39
|
-
-
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
-
|
|
47
|
-
-
|
|
48
|
-
-
|
|
49
|
-
-
|
|
50
|
-
-
|
|
51
|
-
-
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
55
|
-
-
|
|
56
|
-
-
|
|
57
|
-
-
|
|
58
|
-
-
|
|
59
|
-
-
|
|
60
|
-
-
|
|
61
|
-
-
|
|
25
|
+
- stylesheets/decode/api/_json.scss
|
|
26
|
+
- stylesheets/decode/decode.scss
|
|
27
|
+
- stylesheets/decode/helpers/all/_throw.scss
|
|
28
|
+
- stylesheets/decode/helpers/all/_value.scss
|
|
29
|
+
- stylesheets/decode/helpers/color/_color.scss
|
|
30
|
+
- stylesheets/decode/helpers/color/_get-color-value.scss
|
|
31
|
+
- stylesheets/decode/helpers/color/_hex-to-dec.scss
|
|
32
|
+
- stylesheets/decode/helpers/color/_hex.scss
|
|
33
|
+
- stylesheets/decode/helpers/color/_hsl.scss
|
|
34
|
+
- stylesheets/decode/helpers/color/_rgb.scss
|
|
35
|
+
- stylesheets/decode/helpers/map/_consume.scss
|
|
36
|
+
- stylesheets/decode/helpers/number/_find-digits.scss
|
|
37
|
+
- stylesheets/decode/helpers/number/_find-exponent.scss
|
|
38
|
+
- stylesheets/decode/helpers/number/_find-integer.scss
|
|
39
|
+
- stylesheets/decode/helpers/number/_pow.scss
|
|
40
|
+
- stylesheets/decode/helpers/string/_find-ending-quote.scss
|
|
41
|
+
- stylesheets/decode/helpers/string/_length.scss
|
|
42
|
+
- stylesheets/decode/helpers/string/_strip-token.scss
|
|
43
|
+
- stylesheets/decode/types/_bool.scss
|
|
44
|
+
- stylesheets/decode/types/_list.scss
|
|
45
|
+
- stylesheets/decode/types/_map.scss
|
|
46
|
+
- stylesheets/decode/types/_null.scss
|
|
47
|
+
- stylesheets/decode/types/_number.scss
|
|
48
|
+
- stylesheets/decode/types/_string.scss
|
|
49
|
+
- stylesheets/encode/api/_json.scss
|
|
50
|
+
- stylesheets/encode/encode.scss
|
|
51
|
+
- stylesheets/encode/helpers/_quote.scss
|
|
52
|
+
- stylesheets/encode/mixins/_json.scss
|
|
53
|
+
- stylesheets/encode/types/_bool.scss
|
|
54
|
+
- stylesheets/encode/types/_color.scss
|
|
55
|
+
- stylesheets/encode/types/_list.scss
|
|
56
|
+
- stylesheets/encode/types/_map.scss
|
|
57
|
+
- stylesheets/encode/types/_null.scss
|
|
58
|
+
- stylesheets/encode/types/_number.scss
|
|
59
|
+
- stylesheets/encode/types/_string.scss
|
|
60
|
+
- stylesheets/SassyJSON.scss
|
|
62
61
|
homepage: https://github.com/HugoGiraudel/SassyJSON/
|
|
63
62
|
licenses: []
|
|
63
|
+
metadata: {}
|
|
64
64
|
post_install_message:
|
|
65
65
|
rdoc_options: []
|
|
66
66
|
require_paths:
|
|
67
67
|
- lib
|
|
68
68
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
69
|
-
none: false
|
|
70
69
|
requirements:
|
|
71
|
-
- -
|
|
70
|
+
- - '>='
|
|
72
71
|
- !ruby/object:Gem::Version
|
|
73
72
|
version: '0'
|
|
74
73
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
|
-
none: false
|
|
76
74
|
requirements:
|
|
77
|
-
- -
|
|
75
|
+
- - '>='
|
|
78
76
|
- !ruby/object:Gem::Version
|
|
79
77
|
version: 1.3.6
|
|
80
78
|
requirements: []
|
|
81
79
|
rubyforge_project: SassyJSON
|
|
82
|
-
rubygems_version:
|
|
80
|
+
rubygems_version: 2.0.3
|
|
83
81
|
signing_key:
|
|
84
|
-
specification_version:
|
|
82
|
+
specification_version: 4
|
|
85
83
|
summary: SassyJSON is a Sass-powered API for JSON. It provides you the classic json-encode
|
|
86
84
|
and json-decode directly from your Sass files.
|
|
87
85
|
test_files: []
|