true 0.2.1 → 0.2.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 813d58f9bc43892f91f7b74b5bc6ea2600ca6114
4
- data.tar.gz: 0fbfe18b52a5e16799684ed2b8098fe6ca8399ef
3
+ metadata.gz: edbabfb443c014cde7537ac4bb2b9d6d901424e3
4
+ data.tar.gz: a9455cced338c3eb213b247291ae8584bca02e08
5
5
  SHA512:
6
- metadata.gz: 13271ce72f764066922c61799bb609a8005c3cb34d41698a3fae012c22209b7b2845ebe384051193aa754cdf9e163a7bf93fafa4e758e6230b279ba7a33c2292
7
- data.tar.gz: 93fdbe9910e58534b29581e329192407332e9ee118dfd1196604695d3642b7279eae6ace975b82b0376f98e9dc5fb9ff7d591c5c8a10cea7920819597f49cc36
6
+ metadata.gz: a56c48a52c8047dacd1cc35f2059c8aafffedbe4ffaefcc576b5fc49cd50b019612c7b3cafb95f43468b536950f8e8c92d20130f2967575d557b04ebe8cad159
7
+ data.tar.gz: 049944205f25a1ceff0c5c42d46c2a735e9471822d5da2bd1dc15351a312462ac677f36d6ffc6026dd73ffc0216f5ac8e42005e96268e42b99729fdb10b82c12
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.2
@@ -23,7 +23,7 @@ $module-results: null;
23
23
  ) {
24
24
  // Initial CSS Output
25
25
  @if index($output, css) {
26
- @include result-message('#{$-tnl}### #{$name} ----------', css);
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: '#{$-tnl}#{$run} Tests:' +
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);
@@ -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, append($strings, str-slice($string, 1, $found-at - 1)), $strings);
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.1
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.1.10
83
+ rubygems_version: 2.0.3
84
84
  signing_key:
85
85
  specification_version: 3
86
86
  summary: Testing framework for Sass libraries.