serialy-sassy 1.0.0 → 1.0.1
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 +4 -4
- data/Gemfile +1 -1
- data/Gemfile.lock +11 -20
- data/lib/serialy/sassy/version.rb +1 -1
- data/serialy-sassy.gemspec +1 -1
- data/test/test.scss +2 -8
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e06b419afc58f7795f2934c7bad2c7a85399396
|
4
|
+
data.tar.gz: 4f2a107e1de1c0578d2cb30b8179ad3bfdfc6fd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af4d4edac86e7c0e2f448c8d276c8dd285e56dbf09cf9161fa9bb779b243faaf50d07a3b4baf966b99f6f79ce2b505c8dd1c9a58be774452932ac1c7600e7324
|
7
|
+
data.tar.gz: 4154c32246e253ba78638f15ebe475519a1f787d95f55262788e656fe3dfd47ce0f89242ae3bf99f18dbac5fe12322be21855ecc18d921a5bf677717387da978
|
data/Gemfile
CHANGED
data/Gemfile.lock
CHANGED
@@ -1,33 +1,25 @@
|
|
1
|
+
GIT
|
2
|
+
remote: git://github.com/ericam/true.git
|
3
|
+
revision: 5000bcb0a8ec87a2cd0e9d1f2b87356d13daf41b
|
4
|
+
specs:
|
5
|
+
true (1.0.0)
|
6
|
+
sass (~> 3.4)
|
7
|
+
|
1
8
|
PATH
|
2
9
|
remote: .
|
3
10
|
specs:
|
4
|
-
serialy-sassy (1.0.
|
11
|
+
serialy-sassy (1.0.1)
|
5
12
|
multi_json (~> 1.10.1)
|
6
|
-
sassy_hash (~> 0.1.
|
13
|
+
sassy_hash (~> 0.1.1)
|
7
14
|
|
8
15
|
GEM
|
9
16
|
remote: https://rubygems.org/
|
10
17
|
specs:
|
11
|
-
diff-lcs (1.2.5)
|
12
18
|
multi_json (1.10.1)
|
13
19
|
rake (10.3.2)
|
14
|
-
rspec (3.0.0)
|
15
|
-
rspec-core (~> 3.0.0)
|
16
|
-
rspec-expectations (~> 3.0.0)
|
17
|
-
rspec-mocks (~> 3.0.0)
|
18
|
-
rspec-core (3.0.4)
|
19
|
-
rspec-support (~> 3.0.0)
|
20
|
-
rspec-expectations (3.0.4)
|
21
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
22
|
-
rspec-support (~> 3.0.0)
|
23
|
-
rspec-mocks (3.0.4)
|
24
|
-
rspec-support (~> 3.0.0)
|
25
|
-
rspec-support (3.0.4)
|
26
20
|
sass (3.4.5)
|
27
|
-
sassy_hash (0.1.
|
21
|
+
sassy_hash (0.1.1)
|
28
22
|
sass (~> 3.3rc2)
|
29
|
-
true (1.0.0)
|
30
|
-
sass (~> 3.4)
|
31
23
|
|
32
24
|
PLATFORMS
|
33
25
|
ruby
|
@@ -35,6 +27,5 @@ PLATFORMS
|
|
35
27
|
DEPENDENCIES
|
36
28
|
bundler (~> 1.7)
|
37
29
|
rake (~> 10.0)
|
38
|
-
rspec (= 3.0.0)
|
39
30
|
serialy-sassy!
|
40
|
-
true
|
31
|
+
true!
|
data/serialy-sassy.gemspec
CHANGED
@@ -21,6 +21,6 @@ Gem::Specification.new do |spec|
|
|
21
21
|
spec.add_development_dependency "bundler", "~> 1.7"
|
22
22
|
spec.add_development_dependency "rake", "~> 10.0"
|
23
23
|
spec.add_development_dependency "true", '~> 1.0.0'
|
24
|
-
spec.add_dependency 'sassy_hash', '~> 0.1.
|
24
|
+
spec.add_dependency 'sassy_hash', '~> 0.1.1'
|
25
25
|
spec.add_dependency 'multi_json', '~> 1.10.1'
|
26
26
|
end
|
data/test/test.scss
CHANGED
@@ -5,10 +5,7 @@ $colors : map-get($json, 'colors');
|
|
5
5
|
@include test-module('Json') {
|
6
6
|
@include test('Read Values') {
|
7
7
|
$expected : (green, red, orange);
|
8
|
-
@
|
9
|
-
$i : index($expected, $color);
|
10
|
-
@include assert-equal($color, nth($colors, $i));
|
11
|
-
}
|
8
|
+
@include assert-equal($expected, $colors);
|
12
9
|
@include assert-equal(100, map-get($json, 'number'));
|
13
10
|
}
|
14
11
|
}
|
@@ -19,10 +16,7 @@ $colors : map-get($yml, 'colors');
|
|
19
16
|
@include test-module('Yaml') {
|
20
17
|
@include test('Read Values') {
|
21
18
|
$expected : (green, red, orange);
|
22
|
-
@
|
23
|
-
$i : index($expected, $color);
|
24
|
-
@include assert-equal($color, nth($colors, $i));
|
25
|
-
}
|
19
|
+
@include assert-equal($expected, $colors);
|
26
20
|
@include assert-equal(100, map-get($json, 'number'));
|
27
21
|
}
|
28
22
|
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: serialy-sassy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Scott Davis
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-10-
|
11
|
+
date: 2014-10-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -58,14 +58,14 @@ dependencies:
|
|
58
58
|
requirements:
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: 0.1.
|
61
|
+
version: 0.1.1
|
62
62
|
type: :runtime
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: 0.1.
|
68
|
+
version: 0.1.1
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: multi_json
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|