simplecov-lcov 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +5 -0
- data/{README.rdoc → README.markdown} +4 -4
- data/VERSION +1 -1
- data/simplecov-lcov.gemspec +4 -3
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e589621a10201469bfc1026ba5bdcf42551d661
|
4
|
+
data.tar.gz: 6288693ff72b9f39cbfb1703c51c6bcae10ad5b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 867dab6a5ce52108b96f3cd9c3c855cbb25d0c428ce65ed573b59bed79d1cb810ca9053864b241e1a43dcfbc1e703ad95fcd1eff36ae0f90dee31a5b66fb2eb1
|
7
|
+
data.tar.gz: 19f32972037b9edfee52eaa06d2f04a8dfb3e19ce3d6fc77f44cb9e70a682a72a8611ff38ae83ac47ae73d5df33a950036d63129c348564fe26b7ec90fafb660
|
data/.travis.yml
ADDED
@@ -1,8 +1,8 @@
|
|
1
|
-
|
1
|
+
# simplecov-lcov
|
2
2
|
|
3
3
|
Custom SimpleCov formatter to generate a lcov style coverage.
|
4
4
|
|
5
|
-
|
5
|
+
## Usage
|
6
6
|
|
7
7
|
```Ruby
|
8
8
|
require 'simplecov'
|
@@ -11,7 +11,7 @@ Custom SimpleCov formatter to generate a lcov style coverage.
|
|
11
11
|
SimpleCov.start
|
12
12
|
```
|
13
13
|
|
14
|
-
|
14
|
+
## Contributing to simplecov-lcov
|
15
15
|
|
16
16
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet.
|
17
17
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it.
|
@@ -21,6 +21,6 @@ Custom SimpleCov formatter to generate a lcov style coverage.
|
|
21
21
|
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
22
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
23
|
|
24
|
-
|
24
|
+
## Copyright
|
25
25
|
|
26
26
|
Copyright (c) 2014 fortissimo1997. See LICENSE.txt for
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.2
|
data/simplecov-lcov.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = "simplecov-lcov"
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.2"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["fortissimo1997"]
|
@@ -14,15 +14,16 @@ Gem::Specification.new do |s|
|
|
14
14
|
s.email = "fortissimo1997@gmail.com"
|
15
15
|
s.extra_rdoc_files = [
|
16
16
|
"LICENSE.txt",
|
17
|
-
"README.
|
17
|
+
"README.markdown"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
20
|
".document",
|
21
21
|
".rspec",
|
22
|
+
".travis.yml",
|
22
23
|
"Gemfile",
|
23
24
|
"Gemfile.lock",
|
24
25
|
"LICENSE.txt",
|
25
|
-
"README.
|
26
|
+
"README.markdown",
|
26
27
|
"Rakefile",
|
27
28
|
"VERSION",
|
28
29
|
"lib/simplecov-lcov.rb",
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simplecov-lcov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- fortissimo1997
|
@@ -86,14 +86,15 @@ executables: []
|
|
86
86
|
extensions: []
|
87
87
|
extra_rdoc_files:
|
88
88
|
- LICENSE.txt
|
89
|
-
- README.
|
89
|
+
- README.markdown
|
90
90
|
files:
|
91
91
|
- .document
|
92
92
|
- .rspec
|
93
|
+
- .travis.yml
|
93
94
|
- Gemfile
|
94
95
|
- Gemfile.lock
|
95
96
|
- LICENSE.txt
|
96
|
-
- README.
|
97
|
+
- README.markdown
|
97
98
|
- Rakefile
|
98
99
|
- VERSION
|
99
100
|
- lib/simplecov-lcov.rb
|