simplecov-lcov 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d3f51ad9238754eb77be6167506d870935177c8b
4
+ data.tar.gz: 5dde04b9f7cd80681daacb340a51cdfe6235de5d
5
+ SHA512:
6
+ metadata.gz: 9f7f455166cf7559b1f408989bf5b8925cc27ce7ea73e4524e294f3b6f91b833645eb9319ab6f2176a664b1e7872a58ebface540c57c06ab4175055305cc6039
7
+ data.tar.gz: 9dcc1f7211eca3bd21a0dc624cb950dd90f161277dd5a38bfab18134ab753afc53016bf9a4465d93c85eba007c6a645518f78f949d68cb82bede69e68afb8014
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/.rspec ADDED
@@ -0,0 +1 @@
1
+ --color
data/Gemfile ADDED
@@ -0,0 +1,14 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "rspec"
10
+ gem "rdoc"
11
+ gem "bundler"
12
+ gem "jeweler", "~> 2.0.1"
13
+ gem "simplecov"
14
+ end
@@ -0,0 +1,73 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ addressable (2.3.6)
5
+ builder (3.2.2)
6
+ descendants_tracker (0.0.4)
7
+ thread_safe (~> 0.3, >= 0.3.1)
8
+ diff-lcs (1.2.5)
9
+ docile (1.1.3)
10
+ faraday (0.9.0)
11
+ multipart-post (>= 1.2, < 3)
12
+ git (1.2.6)
13
+ github_api (0.11.3)
14
+ addressable (~> 2.3)
15
+ descendants_tracker (~> 0.0.1)
16
+ faraday (~> 0.8, < 0.10)
17
+ hashie (>= 1.2)
18
+ multi_json (>= 1.7.5, < 2.0)
19
+ nokogiri (~> 1.6.0)
20
+ oauth2
21
+ hashie (2.1.1)
22
+ highline (1.6.21)
23
+ jeweler (2.0.1)
24
+ builder
25
+ bundler (>= 1.0)
26
+ git (>= 1.2.5)
27
+ github_api
28
+ highline (>= 1.6.15)
29
+ nokogiri (>= 1.5.10)
30
+ rake
31
+ rdoc
32
+ json (1.8.1)
33
+ jwt (1.0.0)
34
+ mini_portile (0.6.0)
35
+ multi_json (1.10.1)
36
+ multi_xml (0.5.5)
37
+ multipart-post (2.0.0)
38
+ nokogiri (1.6.2.1)
39
+ mini_portile (= 0.6.0)
40
+ oauth2 (0.9.4)
41
+ faraday (>= 0.8, < 0.10)
42
+ jwt (~> 1.0)
43
+ multi_json (~> 1.3)
44
+ multi_xml (~> 0.5)
45
+ rack (~> 1.2)
46
+ rack (1.5.2)
47
+ rake (10.3.2)
48
+ rdoc (4.1.1)
49
+ json (~> 1.4)
50
+ rspec (2.14.1)
51
+ rspec-core (~> 2.14.0)
52
+ rspec-expectations (~> 2.14.0)
53
+ rspec-mocks (~> 2.14.0)
54
+ rspec-core (2.14.8)
55
+ rspec-expectations (2.14.5)
56
+ diff-lcs (>= 1.1.3, < 2.0)
57
+ rspec-mocks (2.14.6)
58
+ simplecov (0.8.2)
59
+ docile (~> 1.1.0)
60
+ multi_json
61
+ simplecov-html (~> 0.8.0)
62
+ simplecov-html (0.8.0)
63
+ thread_safe (0.3.4)
64
+
65
+ PLATFORMS
66
+ ruby
67
+
68
+ DEPENDENCIES
69
+ bundler
70
+ jeweler (~> 2.0.1)
71
+ rdoc
72
+ rspec
73
+ simplecov
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2014 fortissimo1997
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,26 @@
1
+ = simplecov-lcov
2
+
3
+ Custom SimpleCov formatter to generate a lcov style coverage.
4
+
5
+ == Usage
6
+
7
+ ```Ruby
8
+ require 'simplecov'
9
+ require 'simplecov-lcov'
10
+ SimpleCov.formatter = SimpleCov::Formatter::LcovFormatter
11
+ SimpleCov.start
12
+ ```
13
+
14
+ == Contributing to simplecov-lcov
15
+
16
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
17
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
18
+ * Fork the project.
19
+ * Start a feature/bugfix branch.
20
+ * Commit and push until you are happy with your contribution.
21
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
22
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
23
+
24
+ == Copyright
25
+
26
+ Copyright (c) 2014 fortissimo1997. See LICENSE.txt for
@@ -0,0 +1,50 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts 'Run `bundle install` to install missing gems'
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://guides.rubygems.org/specification-reference/ for more options
17
+ gem.name = 'simplecov-lcov'
18
+ gem.homepage = 'http://github.com/fortissimo1997/simplecov-lcov'
19
+ gem.license = 'MIT'
20
+ gem.summary = %Q{Custom SimpleCov formatter to generate a lcov style coverage.}
21
+ gem.description = %Q{Custom SimpleCov formatter to generate a lcov style coverage.}
22
+ gem.email = 'fortissimo1997@gmail.com'
23
+ gem.authors = ['fortissimo1997']
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rspec/core'
29
+ require 'rspec/core/rake_task'
30
+ RSpec::Core::RakeTask.new(:spec) do |spec|
31
+ spec.pattern = FileList['spec/**/*_spec.rb']
32
+ end
33
+
34
+ desc 'Code coverage detail'
35
+ task :simplecov do
36
+ ENV['COVERAGE'] = 'true'
37
+ Rake::Task['spec'].execute
38
+ end
39
+
40
+ task default: :spec
41
+
42
+ require 'rdoc/task'
43
+ Rake::RDocTask.new do |rdoc|
44
+ version = File.exist?('VERSION') ? File.read('VERSION') : ''
45
+
46
+ rdoc.rdoc_dir = 'rdoc'
47
+ rdoc.title = "simplecov-lcov #{version}"
48
+ rdoc.rdoc_files.include('README*')
49
+ rdoc.rdoc_files.include('lib/**/*.rb')
50
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.1
@@ -0,0 +1,53 @@
1
+ require 'fileutils'
2
+
3
+ fail 'simplecov-lcov requires simplecov' unless defined?(SimpleCov)
4
+
5
+ module SimpleCov
6
+ module Formatter
7
+ # Custom Formatter to generate lcov style coverage for simplecov
8
+ class LcovFormatter
9
+ # generate lcov style coverage.
10
+ # ==== Args
11
+ # _result_ :: [SimpleCov::Result] abcoverage result instance.
12
+ def format(result)
13
+ create_output_directory!
14
+ result.files.each { |file| write_lcov!(file) }
15
+ end
16
+
17
+ # Output directory for generated files.
18
+ # ==== Return
19
+ # Path for output directory.
20
+ def self.output_directory
21
+ File.join(SimpleCov.coverage_path, 'lcov')
22
+ end
23
+
24
+ private
25
+
26
+ def create_output_directory!
27
+ return if Dir.exist?(self.class.output_directory)
28
+ FileUtils.mkdir_p(self.class.output_directory)
29
+ end
30
+
31
+ def write_lcov!(file)
32
+ File.open(File.join(self.class.output_directory, output_filename(file.filename)), 'w') do |f|
33
+ f.write format_file(file)
34
+ end
35
+ end
36
+
37
+ def output_filename(filename)
38
+ filename.gsub("#{SimpleCov.root}/", '').gsub('/', '-')
39
+ .tap { |name| name << '.lcov' }
40
+ end
41
+
42
+ def format_file(file)
43
+ "SF:#{file.filename}\n".tap do |content|
44
+ file.lines.reject(&:never?).reject(&:skipped?)
45
+ .each do |line|
46
+ content << "DA:#{line.number},#{line.coverage}\n"
47
+ end
48
+ content << "end_of_record\n"
49
+ end
50
+ end
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,67 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "simplecov-lcov"
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["fortissimo1997"]
12
+ s.date = "2014-05-29"
13
+ s.description = "Custom SimpleCov formatter to generate a lcov style coverage."
14
+ s.email = "fortissimo1997@gmail.com"
15
+ s.extra_rdoc_files = [
16
+ "LICENSE.txt",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".rspec",
22
+ "Gemfile",
23
+ "Gemfile.lock",
24
+ "LICENSE.txt",
25
+ "README.rdoc",
26
+ "Rakefile",
27
+ "VERSION",
28
+ "lib/simplecov-lcov.rb",
29
+ "simplecov-lcov.gemspec",
30
+ "spec/fixtures/app/models/user.rb",
31
+ "spec/fixtures/hoge.rb",
32
+ "spec/fixtures/lcov/spec-fixtures-app-models-user.rb.lcov",
33
+ "spec/fixtures/lcov/spec-fixtures-hoge.rb.lcov",
34
+ "spec/simplecov-lcov_spec.rb",
35
+ "spec/spec_helper.rb"
36
+ ]
37
+ s.homepage = "http://github.com/fortissimo1997/simplecov-lcov"
38
+ s.licenses = ["MIT"]
39
+ s.require_paths = ["lib"]
40
+ s.rubygems_version = "2.0.3"
41
+ s.summary = "Custom SimpleCov formatter to generate a lcov style coverage."
42
+
43
+ if s.respond_to? :specification_version then
44
+ s.specification_version = 4
45
+
46
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
47
+ s.add_development_dependency(%q<rspec>, [">= 0"])
48
+ s.add_development_dependency(%q<rdoc>, [">= 0"])
49
+ s.add_development_dependency(%q<bundler>, [">= 0"])
50
+ s.add_development_dependency(%q<jeweler>, ["~> 2.0.1"])
51
+ s.add_development_dependency(%q<simplecov>, [">= 0"])
52
+ else
53
+ s.add_dependency(%q<rspec>, [">= 0"])
54
+ s.add_dependency(%q<rdoc>, [">= 0"])
55
+ s.add_dependency(%q<bundler>, [">= 0"])
56
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
57
+ s.add_dependency(%q<simplecov>, [">= 0"])
58
+ end
59
+ else
60
+ s.add_dependency(%q<rspec>, [">= 0"])
61
+ s.add_dependency(%q<rdoc>, [">= 0"])
62
+ s.add_dependency(%q<bundler>, [">= 0"])
63
+ s.add_dependency(%q<jeweler>, ["~> 2.0.1"])
64
+ s.add_dependency(%q<simplecov>, [">= 0"])
65
+ end
66
+ end
67
+
@@ -0,0 +1,16 @@
1
+ # class User
2
+ #
3
+ # sample fixture
4
+ class User
5
+ def foo
6
+ "foo: #{@foo}"
7
+ end
8
+
9
+ def bar
10
+ puts 'bar'
11
+ end
12
+
13
+ def baz(b)
14
+ puts b
15
+ end
16
+ end
@@ -0,0 +1,12 @@
1
+ # class Hoge
2
+ #
3
+ # sample fixture
4
+ class Hoge
5
+ def initialize(foo)
6
+ @foo = foo
7
+ end
8
+
9
+ def bar
10
+ puts 'bar'
11
+ end
12
+ end
@@ -0,0 +1,13 @@
1
+ SF:/path/to/repository/spec/fixtures/app/models/user.rb
2
+ DA:4,2
3
+ DA:5,2
4
+ DA:6,2
5
+ DA:7,2
6
+ DA:9:0
7
+ DA:10,0
8
+ DA:11,0
9
+ DA:13,1
10
+ DA:14,0
11
+ DA:15,0
12
+ DA:16:1
13
+ end_of_record
@@ -0,0 +1,10 @@
1
+ SF:/path/to/repository/spec/fixtures/hoge.rb
2
+ DA:4,1
3
+ DA:5,2
4
+ DA:6,2
5
+ DA:7,1
6
+ DA:9,0
7
+ DA:10,0
8
+ DA:11,0
9
+ DA:12,1
10
+ end_of_record
@@ -0,0 +1,47 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe SimpleCov::Formatter::LcovFormatter do
4
+ describe '#format' do
5
+ let(:expand_path) {
6
+ lambda do |filename|
7
+ File.expand_path(File.join(File.dirname(__FILE__), 'fixtures', filename))
8
+ end
9
+ }
10
+
11
+ let(:simplecov_result_hash) {
12
+ {
13
+ expand_path.call('hoge.rb') => [nil, nil, nil, 1, 2, 2, 1, nil, 0, 0, 0, 1],
14
+ expand_path.call('app/models/user.rb') => [nil, nil, nil, 2, 2, 2, 2, nil, 0, 0, 0, nil, 1, 0, 0, 1]
15
+ }
16
+ }
17
+
18
+ let(:simplecov_result) {
19
+ SimpleCov::Result.new(simplecov_result_hash)
20
+ }
21
+
22
+ before {
23
+ SimpleCov::Formatter::LcovFormatter.new.format(simplecov_result)
24
+ }
25
+
26
+ describe File do
27
+ it { expect(File).to exist(File.join(SimpleCov::Formatter::LcovFormatter.output_directory, 'spec-fixtures-hoge.rb.lcov')) }
28
+ it { expect(File).to exist(File.join(SimpleCov::Formatter::LcovFormatter.output_directory, 'spec-fixtures-app-models-user.rb.lcov')) }
29
+ end
30
+
31
+ describe 'spec-fixtures-hoge.rb.lcov' do
32
+ let(:output_path) {
33
+ File.join(SimpleCov::Formatter::LcovFormatter.output_directory, 'spec-fixtures-hoge.rb.lcov')
34
+ }
35
+ let(:fixture) {
36
+ File.read("#{File.dirname(__FILE__)}/fixtures/lcov/spec-fixtures-hoge.rb.lcov")
37
+ .gsub('/path/to/repository/spec', File.dirname(__FILE__))
38
+ }
39
+ it { expect(File.read(output_path)).to eq(fixture) }
40
+ end
41
+ end
42
+
43
+ describe '.output_directory' do
44
+ subject { SimpleCov::Formatter::LcovFormatter.output_directory }
45
+ it { expect(subject).to eq(File.join(SimpleCov.coverage_path, 'lcov')) }
46
+ end
47
+ end
@@ -0,0 +1,29 @@
1
+ require 'simplecov'
2
+
3
+ module SimpleCov::Configuration
4
+ def clean_filters
5
+ @filters = []
6
+ end
7
+ end
8
+
9
+ SimpleCov.configure do
10
+ clean_filters
11
+ end
12
+
13
+ ENV['COVERAGE'] && SimpleCov.start do
14
+ add_filter '/.rvm/'
15
+ end
16
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
17
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
18
+
19
+ require 'rspec'
20
+ require 'simplecov'
21
+ require 'simplecov-lcov'
22
+
23
+ # Requires supporting files with custom matchers and macros, etc,
24
+ # in ./support/ and its subdirectories.
25
+ # Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each {|f| require f}
26
+
27
+ RSpec.configure do |config|
28
+
29
+ end
metadata ADDED
@@ -0,0 +1,131 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: simplecov-lcov
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - fortissimo1997
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2014-05-29 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rspec
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: jeweler
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ~>
60
+ - !ruby/object:Gem::Version
61
+ version: 2.0.1
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ~>
67
+ - !ruby/object:Gem::Version
68
+ version: 2.0.1
69
+ - !ruby/object:Gem::Dependency
70
+ name: simplecov
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ description: Custom SimpleCov formatter to generate a lcov style coverage.
84
+ email: fortissimo1997@gmail.com
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files:
88
+ - LICENSE.txt
89
+ - README.rdoc
90
+ files:
91
+ - .document
92
+ - .rspec
93
+ - Gemfile
94
+ - Gemfile.lock
95
+ - LICENSE.txt
96
+ - README.rdoc
97
+ - Rakefile
98
+ - VERSION
99
+ - lib/simplecov-lcov.rb
100
+ - simplecov-lcov.gemspec
101
+ - spec/fixtures/app/models/user.rb
102
+ - spec/fixtures/hoge.rb
103
+ - spec/fixtures/lcov/spec-fixtures-app-models-user.rb.lcov
104
+ - spec/fixtures/lcov/spec-fixtures-hoge.rb.lcov
105
+ - spec/simplecov-lcov_spec.rb
106
+ - spec/spec_helper.rb
107
+ homepage: http://github.com/fortissimo1997/simplecov-lcov
108
+ licenses:
109
+ - MIT
110
+ metadata: {}
111
+ post_install_message:
112
+ rdoc_options: []
113
+ require_paths:
114
+ - lib
115
+ required_ruby_version: !ruby/object:Gem::Requirement
116
+ requirements:
117
+ - - '>='
118
+ - !ruby/object:Gem::Version
119
+ version: '0'
120
+ required_rubygems_version: !ruby/object:Gem::Requirement
121
+ requirements:
122
+ - - '>='
123
+ - !ruby/object:Gem::Version
124
+ version: '0'
125
+ requirements: []
126
+ rubyforge_project:
127
+ rubygems_version: 2.0.3
128
+ signing_key:
129
+ specification_version: 4
130
+ summary: Custom SimpleCov formatter to generate a lcov style coverage.
131
+ test_files: []