true 0.2.1 → 0.2.3
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/VERSION +1 -1
- data/sass/true/_modules.scss +2 -4
- data/sass/true/_utilities.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: edbabfb443c014cde7537ac4bb2b9d6d901424e3
|
|
4
|
+
data.tar.gz: a9455cced338c3eb213b247291ae8584bca02e08
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a56c48a52c8047dacd1cc35f2059c8aafffedbe4ffaefcc576b5fc49cd50b019612c7b3cafb95f43468b536950f8e8c92d20130f2967575d557b04ebe8cad159
|
|
7
|
+
data.tar.gz: 049944205f25a1ceff0c5c42d46c2a735e9471822d5da2bd1dc15351a312462ac677f36d6ffc6026dd73ffc0216f5ac8e42005e96268e42b99729fdb10b82c12
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.2
|
data/sass/true/_modules.scss
CHANGED
|
@@ -23,7 +23,7 @@ $module-results: null;
|
|
|
23
23
|
) {
|
|
24
24
|
// Initial CSS Output
|
|
25
25
|
@if index($output, css) {
|
|
26
|
-
@include result-message('
|
|
26
|
+
@include result-message('### #{$name} ----------', css);
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
29
|
|
|
@@ -48,9 +48,7 @@ $module-results: null;
|
|
|
48
48
|
$pass: map-get($module-results, pass);
|
|
49
49
|
$fail: map-get($module-results, fail);
|
|
50
50
|
|
|
51
|
-
$css-message: '#{
|
|
52
|
-
'#{$-tnl}- #{$pass} Passed' +
|
|
53
|
-
'#{$-tnl}- #{$fail} Failed';
|
|
51
|
+
$css-message: '#{$run} Tests:\a - #{$pass} Passed\a - #{$fail} Failed';
|
|
54
52
|
|
|
55
53
|
@include spacer-comment;
|
|
56
54
|
@include result-message($css-message, css);
|
data/sass/true/_utilities.scss
CHANGED
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
$strings: ();
|
|
43
43
|
$found-at: str-index($string, $substring);
|
|
44
44
|
@while $found-at {
|
|
45
|
-
$strings: if($found-at > 1,
|
|
45
|
+
$strings: append($strings, if($found-at > 1, str-slice($string, 1, $found-at - 1), ""));
|
|
46
46
|
$string: str-slice($string, $found-at + str-length($substring));
|
|
47
47
|
$found-at: str-index($string, $substring);
|
|
48
48
|
}
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: 'true'
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Meyer
|
|
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
80
80
|
version: '1.2'
|
|
81
81
|
requirements: []
|
|
82
82
|
rubyforge_project: 'true'
|
|
83
|
-
rubygems_version: 2.
|
|
83
|
+
rubygems_version: 2.0.3
|
|
84
84
|
signing_key:
|
|
85
85
|
specification_version: 3
|
|
86
86
|
summary: Testing framework for Sass libraries.
|