simplecov-summary 0.0.1 → 0.0.2

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.
@@ -3,14 +3,12 @@ require 'simplecov'
3
3
 
4
4
  class SimpleCov::Formatter::SummaryFormatter
5
5
  def format(result)
6
- puts "\n\n"
7
- print "SimpleCov stats:"
6
+ puts "\n\n"
7
+ puts "SimpleCov stats:"
8
8
 
9
- name_length = result.groups.keys.map{|x| x.length}.max
9
+ name_length = (result.groups.keys + ["Total"]).map{|x| x.length}.max
10
10
 
11
11
  result.groups.each do |name, files|
12
- puts "\n"
13
-
14
12
  percentage = files.map{|x| x.covered_percent.round(2)}
15
13
  percentage = (percentage.sum / percentage.count).round(2)
16
14
 
@@ -23,7 +21,9 @@ class SimpleCov::Formatter::SummaryFormatter
23
21
  :red
24
22
  end
25
23
 
26
- print " #{name.rjust(name_length)}: #{percentage}".send(color)
24
+ puts " #{name.rjust(name_length)}: #{percentage}%".send(color)
27
25
  end
26
+
27
+ print " #{'Total'.rjust(name_length)}: #{result.covered_percent.round(2)}%"
28
28
  end
29
29
  end
@@ -1,5 +1,5 @@
1
1
  module Simplecov
2
2
  module Summary
3
- VERSION = "0.0.1"
3
+ VERSION = "0.0.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simplecov-summary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-12-28 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: simplecov
16
- requirement: &70319102385800 !ruby/object:Gem::Requirement
16
+ requirement: &70168715630100 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70319102385800
24
+ version_requirements: *70168715630100
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: colored
27
- requirement: &70319102401740 !ruby/object:Gem::Requirement
27
+ requirement: &70168715629680 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70319102401740
35
+ version_requirements: *70168715629680
36
36
  description: SimpleCov formatter that prints nice colored summary for your coverage
37
37
  straight into your console.
38
38
  email: