codecov 0.3.0 → 0.5.0
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/CHANGELOG.md +127 -0
- data/LICENSE +21 -0
- data/README.md +111 -0
- data/lib/codecov.rb +4 -613
- data/lib/codecov/formatter.rb +126 -0
- data/lib/codecov/uploader.rb +546 -0
- data/lib/codecov/version.rb +1 -1
- metadata +13 -3
data/lib/codecov/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: codecov
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steve Peak
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2021-01
|
12
|
+
date: 2021-03-01 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: simplecov
|
@@ -122,12 +122,22 @@ executables: []
|
|
122
122
|
extensions: []
|
123
123
|
extra_rdoc_files: []
|
124
124
|
files:
|
125
|
+
- CHANGELOG.md
|
126
|
+
- LICENSE
|
127
|
+
- README.md
|
125
128
|
- lib/codecov.rb
|
129
|
+
- lib/codecov/formatter.rb
|
130
|
+
- lib/codecov/uploader.rb
|
126
131
|
- lib/codecov/version.rb
|
127
132
|
homepage: https://github.com/codecov/codecov-ruby
|
128
133
|
licenses:
|
129
134
|
- MIT
|
130
|
-
metadata:
|
135
|
+
metadata:
|
136
|
+
bug_tracker_uri: https://github.com/codecov/codecov-ruby/issues
|
137
|
+
changelog_uri: https://github.com/codecov/codecov-ruby/blob/v0.5.0/CHANGELOG.md
|
138
|
+
documentation_uri: http://www.rubydoc.info/gems/codecov/0.5.0
|
139
|
+
homepage_uri: https://github.com/codecov/codecov-ruby
|
140
|
+
source_code_uri: https://github.com/codecov/codecov-ruby
|
131
141
|
post_install_message:
|
132
142
|
rdoc_options: []
|
133
143
|
require_paths:
|