SassyJSON 1.0.7 → 1.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (41) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +3 -1
  3. data/README.md +1 -1
  4. data/lib/SassyJSON.rb +2 -2
  5. data/{src → stylesheets}/SassyJSON.scss +0 -0
  6. data/{src → stylesheets}/decode/api/_json.scss +0 -0
  7. data/{src → stylesheets}/decode/decode.scss +0 -0
  8. data/{src → stylesheets}/decode/helpers/all/_throw.scss +0 -0
  9. data/{src → stylesheets}/decode/helpers/all/_value.scss +0 -0
  10. data/{src → stylesheets}/decode/helpers/color/_color.scss +0 -0
  11. data/{src → stylesheets}/decode/helpers/color/_get-color-value.scss +0 -0
  12. data/{src → stylesheets}/decode/helpers/color/_hex-to-dec.scss +0 -0
  13. data/{src → stylesheets}/decode/helpers/color/_hex.scss +0 -0
  14. data/{src → stylesheets}/decode/helpers/color/_hsl.scss +0 -0
  15. data/{src → stylesheets}/decode/helpers/color/_rgb.scss +0 -0
  16. data/{src → stylesheets}/decode/helpers/map/_consume.scss +0 -0
  17. data/{src → stylesheets}/decode/helpers/number/_find-digits.scss +0 -0
  18. data/{src → stylesheets}/decode/helpers/number/_find-exponent.scss +0 -0
  19. data/{src → stylesheets}/decode/helpers/number/_find-integer.scss +0 -0
  20. data/{src → stylesheets}/decode/helpers/number/_pow.scss +0 -0
  21. data/{src → stylesheets}/decode/helpers/string/_find-ending-quote.scss +0 -0
  22. data/{src → stylesheets}/decode/helpers/string/_length.scss +0 -0
  23. data/{src → stylesheets}/decode/helpers/string/_strip-token.scss +0 -0
  24. data/{src → stylesheets}/decode/types/_bool.scss +0 -0
  25. data/{src → stylesheets}/decode/types/_list.scss +0 -0
  26. data/{src → stylesheets}/decode/types/_map.scss +0 -0
  27. data/{src → stylesheets}/decode/types/_null.scss +0 -0
  28. data/{src → stylesheets}/decode/types/_number.scss +0 -0
  29. data/{src → stylesheets}/decode/types/_string.scss +0 -0
  30. data/{src → stylesheets}/encode/api/_json.scss +0 -0
  31. data/{src → stylesheets}/encode/encode.scss +0 -0
  32. data/{src → stylesheets}/encode/helpers/_quote.scss +0 -0
  33. data/{src → stylesheets}/encode/mixins/_json.scss +0 -0
  34. data/{src → stylesheets}/encode/types/_bool.scss +0 -0
  35. data/{src → stylesheets}/encode/types/_color.scss +0 -0
  36. data/{src → stylesheets}/encode/types/_list.scss +0 -0
  37. data/{src → stylesheets}/encode/types/_map.scss +0 -0
  38. data/{src → stylesheets}/encode/types/_null.scss +0 -0
  39. data/{src → stylesheets}/encode/types/_number.scss +0 -0
  40. data/{src → stylesheets}/encode/types/_string.scss +0 -0
  41. 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.6`: released a Ruby gem
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 [![NPM version](https://badge.fury.io/js/sassyjson.png)](http://badge.fury.io/js/sassyjson) [![Build Status](https://travis-ci.org/HugoGiraudel/SassyJSON.png?branch=master)](https://travis-ci.org/HugoGiraudel/SassyJSON) [![Gem Version](https://badge.fury.io/rb/SassyJSON.png)](http://badge.fury.io/rb/SassyJSON)
1
+ # SassyJSON [![NPM version](https://badge.fury.io/js/sassyjson.png)](http://badge.fury.io/js/sassyjson) [![Gem Version](https://badge.fury.io/rb/SassyJSON.png)](http://badge.fury.io/rb/SassyJSON) [![Build Status](https://travis-ci.org/HugoGiraudel/SassyJSON.png?branch=master)](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.7"
9
- DATE = "2014-01-19"
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
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.7
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-19 00:00:00.000000000 Z
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
- - src/decode/api/_json.scss
27
- - src/decode/decode.scss
28
- - src/decode/helpers/all/_throw.scss
29
- - src/decode/helpers/all/_value.scss
30
- - src/decode/helpers/color/_color.scss
31
- - src/decode/helpers/color/_get-color-value.scss
32
- - src/decode/helpers/color/_hex-to-dec.scss
33
- - src/decode/helpers/color/_hex.scss
34
- - src/decode/helpers/color/_hsl.scss
35
- - src/decode/helpers/color/_rgb.scss
36
- - src/decode/helpers/map/_consume.scss
37
- - src/decode/helpers/number/_find-digits.scss
38
- - src/decode/helpers/number/_find-exponent.scss
39
- - src/decode/helpers/number/_find-integer.scss
40
- - src/decode/helpers/number/_pow.scss
41
- - src/decode/helpers/string/_find-ending-quote.scss
42
- - src/decode/helpers/string/_length.scss
43
- - src/decode/helpers/string/_strip-token.scss
44
- - src/decode/types/_bool.scss
45
- - src/decode/types/_list.scss
46
- - src/decode/types/_map.scss
47
- - src/decode/types/_null.scss
48
- - src/decode/types/_number.scss
49
- - src/decode/types/_string.scss
50
- - src/encode/api/_json.scss
51
- - src/encode/encode.scss
52
- - src/encode/helpers/_quote.scss
53
- - src/encode/mixins/_json.scss
54
- - src/encode/types/_bool.scss
55
- - src/encode/types/_color.scss
56
- - src/encode/types/_list.scss
57
- - src/encode/types/_map.scss
58
- - src/encode/types/_null.scss
59
- - src/encode/types/_number.scss
60
- - src/encode/types/_string.scss
61
- - src/SassyJSON.scss
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: 1.8.24
80
+ rubygems_version: 2.0.3
83
81
  signing_key:
84
- specification_version: 3
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: []