coveralls_reborn 0.19.0 → 0.23.0

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
  SHA256:
3
- metadata.gz: 4bc12f5b88635ba1f1ccef5bbb0bf35582968a2596ec8560f68dd331b8484dbb
4
- data.tar.gz: 150ab6de22220b3b5621f96db48338999fcc8f03d9656d08764f51a783e5672f
3
+ metadata.gz: 8d60acce3dea2248f73864689d5ad1fdfda5da46bb17b9666bf8bb94b911b070
4
+ data.tar.gz: 5c235845bb44951d9a53961aa6a9e4cd3dbed865d3d54d7bd3d7f5e1b7b535d6
5
5
  SHA512:
6
- metadata.gz: d9e6dd6bbdca328fd172be5af7fddc549e3c9ecd3cb1d95f39bde3514fda2878cd56c37c41449f91e01e2a2499b6ecee6999c4519fcb80e6fc197215c9d2604e
7
- data.tar.gz: 98b81b28d1dcc376c24f19acaa7e1f41194df8e63d12d92277a8a048629930fd3c406010e431039b924f4a589c38a83625ce9c70224976e56a97614b2a37ff6e
6
+ metadata.gz: 52c45871f2b938204024cc0479d2663a49818fd4a675cf56b315a767576658663c32beb136d9ac30a5bb853ff97bc434f8f9ca621a5d420d9e4719c2d5e139ab
7
+ data.tar.gz: ca395d514b29d860a8462847cfc20419e5ae0300b964d9d51491e55f046cd0b6cb5f5bc651036ffc2b48a7ad2bfb8c93bc69f3997fab5879c58c20810e81405c
@@ -0,0 +1,8 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: bundler
4
+ directory: "/"
5
+ schedule:
6
+ interval: daily
7
+ time: "04:00"
8
+ open-pull-requests-limit: 10
@@ -0,0 +1,29 @@
1
+ name: Rubocop
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ rubocop:
11
+ name: Rubocop
12
+ runs-on: ${{ matrix.os }}
13
+ env:
14
+ BUNDLE_JOBS: 4
15
+ BUNDLE_RETRY: 3
16
+ strategy:
17
+ matrix:
18
+ os: [ubuntu-latest]
19
+ ruby-version: ['2.5']
20
+
21
+ steps:
22
+ - uses: actions/checkout@v2
23
+ - name: Set up Ruby
24
+ uses: ruby/setup-ruby@v1
25
+ with:
26
+ ruby-version: ${{ matrix.ruby-version }}
27
+ bundler-cache: true
28
+ - name: Ruby linter
29
+ run: bundle exec rubocop
@@ -0,0 +1,51 @@
1
+ name: Ruby specs
2
+
3
+ on:
4
+ push:
5
+ branches: [ main ]
6
+ pull_request:
7
+ branches: [ main ]
8
+
9
+ jobs:
10
+ test:
11
+ name: Tests
12
+ runs-on: ubuntu-latest
13
+ strategy:
14
+ matrix:
15
+ ruby-version: ['2.5', '2.6', '2.7', '3.0']
16
+ experimental: [false]
17
+
18
+ include:
19
+ - ruby-version: 'head'
20
+ experimental: true
21
+ - ruby-version: 'jruby-9.2'
22
+ experimental: true
23
+
24
+ continue-on-error: ${{ matrix.experimental }}
25
+
26
+ steps:
27
+ - uses: actions/checkout@v2
28
+ - name: Set up Ruby
29
+ uses: ruby/setup-ruby@v1
30
+ with:
31
+ ruby-version: ${{ matrix.ruby-version }}
32
+ bundler-cache: true
33
+ - name: Run specs
34
+ run: JRUBY_OPTS="--dev --debug" bundle exec rake spec
35
+ - name: Coveralls Parallel
36
+ uses: coverallsapp/github-action@master
37
+ with:
38
+ github-token: ${{ secrets.github_token }}
39
+ flag-name: run-${{ matrix.ruby-version }}
40
+ parallel: true
41
+
42
+ coverage:
43
+ name: Coverage
44
+ needs: test
45
+ runs-on: ubuntu-latest
46
+ steps:
47
+ - name: Coveralls Finished
48
+ uses: coverallsapp/github-action@master
49
+ with:
50
+ github-token: ${{ secrets.github_token }}
51
+ parallel-finished: true
data/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.23.0 / 2021-09-12
4
+
5
+ * [FEATURE] Send branches coverage [#27](https://github.com/tagliala/coveralls-ruby-reborn/pull/27/files)
6
+
7
+ ## 0.22.0 / 2021-04-30
8
+
9
+ * [FEATURE] Drop Ruby 2.4 support
10
+ * [ENHANCEMENT] Test against latest Ruby versions
11
+
12
+ ## 0.21.0 / 2021-03-18
13
+
14
+ * [FEATURE] Allow GitLab parallel builds [#20](https://github.com/tagliala/coveralls-ruby-reborn/pull/20)
15
+ * [ENHANCEMENT] Test against JRuby 9.2.16.0
16
+
17
+ ## 0.20.0 / 2021-01-09
18
+
19
+ * [FEATURE] Add Ruby 3 compatibility
20
+ * [FEATURE] Add SimpleCov 0.21.0 compatibility
21
+ * [ENHANCEMENT] Update dependencies
22
+
3
23
  ## 0.19.0 / 2020-12-02
4
24
 
5
25
  * [FEATURE] Add SimpleCov 0.20.0 compatibility
data/Gemfile CHANGED
@@ -9,20 +9,15 @@ platforms :jruby do
9
9
  gem 'jruby-openssl', '~> 0.10.2'
10
10
  end
11
11
 
12
- group :development do
13
- gem 'rake', '~> 13.0'
14
- gem 'rspec', '~> 3.10'
15
- gem 'rubocop', '~> 1.5'
16
- gem 'rubocop-performance', '~> 1.9'
17
- gem 'rubocop-rake', '~> 0.5.1'
18
- gem 'rubocop-rspec', '~> 2.0'
19
- gem 'truthy', '~> 1.0'
20
- gem 'vcr', '~> 6.0'
21
- gem 'webmock', '~> 3.10'
22
- end
23
-
24
- group :development, :test do
25
- gem 'byebug', '~> 11.1', platforms: %i[mri mingw x64_mingw]
26
- gem 'pry', '~> 0.13.1'
27
- gem 'pry-byebug', '~> 3.9', platforms: %i[mri mingw x64_mingw]
28
- end
12
+ gem 'byebug', '~> 11.1', platforms: %i[mri mingw x64_mingw]
13
+ gem 'pry', '~> 0.13.1'
14
+ gem 'pry-byebug', '~> 3.9', platforms: %i[mri mingw x64_mingw]
15
+ gem 'rake', '~> 13.0'
16
+ gem 'rspec', '~> 3.10'
17
+ gem 'rubocop', '~> 1.20'
18
+ gem 'rubocop-performance', '~> 1.11'
19
+ gem 'rubocop-rake', '~> 0.6.0'
20
+ gem 'rubocop-rspec', '~> 2.4'
21
+ gem 'truthy', '~> 1.0'
22
+ gem 'vcr', '~> 6.0'
23
+ gem 'webmock', '~> 3.14'
data/LICENSE CHANGED
@@ -2,7 +2,7 @@ MIT License
2
2
 
3
3
  Copyright (c) 2018 Wil Gieseler
4
4
 
5
- Copyright (c) 2020 Geremia Taglialatela
5
+ Copyright (c) 2021 Geremia Taglialatela
6
6
 
7
7
  Permission is hereby granted, free of charge, to any person obtaining a copy
8
8
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # [Coveralls Reborn](http://coveralls.io) for Ruby [![Coverage Status](https://coveralls.io/repos/github/tagliala/coveralls-ruby-reborn/badge.svg?branch=master)](https://coveralls.io/github/tagliala/coveralls-ruby-reborn?branch=master) [![Build Status](https://secure.travis-ci.org/tagliala/coveralls-ruby-reborn.svg?branch=master)](https://travis-ci.org/tagliala/coveralls-ruby-reborn) [![Gem Version](https://badge.fury.io/rb/coveralls_reborn.svg)](http://badge.fury.io/rb/coveralls_reborn)
1
+ # [Coveralls Reborn](https://coveralls.io) for Ruby [![Coverage Status](https://coveralls.io/repos/github/tagliala/coveralls-ruby-reborn/badge.svg?branch=main)](https://coveralls.io/github/tagliala/coveralls-ruby-reborn?branch=main) ![Build Status](https://github.com/tagliala/coveralls-ruby-reborn/actions/workflows/ruby.yml/badge.svg) [![Gem Version](https://badge.fury.io/rb/coveralls_reborn.svg)](https://badge.fury.io/rb/coveralls_reborn)
2
2
 
3
3
  ### [Read the docs →](https://docs.coveralls.io/ruby-on-rails)
4
4
 
@@ -7,5 +7,40 @@ An up-to-date fork of [lemurheavy/coveralls-ruby](https://github.com/lemurheavy/
7
7
  Add to your `Gemfile`:
8
8
 
9
9
  ```rb
10
- gem 'coveralls_reborn', '~> 0.19.0', require: false
10
+ gem 'coveralls_reborn', '~> 0.23.0', require: false
11
11
  ```
12
+
13
+ ### GitHub Actions
14
+
15
+ Psst... you don't need this gem on GitHub Actions.
16
+
17
+ For a Rails application, just add
18
+
19
+ ```rb
20
+ gem 'simplecov-lcov', '~> 0.8.0'
21
+ ```
22
+
23
+ to your `Gemfile` and
24
+
25
+ ```rb
26
+ require 'simplecov'
27
+
28
+ SimpleCov.start 'rails' do
29
+ if ENV['CI']
30
+ require 'simplecov-lcov'
31
+
32
+ SimpleCov::Formatter::LcovFormatter.config do |c|
33
+ c.report_with_single_file = true
34
+ c.single_report_path = 'coverage/lcov.info'
35
+ end
36
+
37
+ formatter SimpleCov::Formatter::LcovFormatter
38
+ end
39
+
40
+ add_filter %w[version.rb initializer.rb]
41
+ end
42
+ ```
43
+
44
+ at the top of `spec_helper.rb` / `rails_helper.rb` / `test_helper.rb`.
45
+
46
+ Then follow instructions at [Coveralls GitHub Action](https://github.com/marketplace/actions/coveralls-github-action)
data/Rakefile CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  require 'bundler/gem_tasks'
4
4
 
5
- # Travis!
6
5
  require 'rubygems'
7
6
  require 'rake'
8
7
  require 'rspec/core/rake_task'
@@ -20,15 +20,16 @@ Gem::Specification.new do |gem|
20
20
  gem.version = Coveralls::VERSION
21
21
 
22
22
  gem.metadata['bug_tracker_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn/issues'
23
- gem.metadata['changelog_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn/blob/master/CHANGELOG.md'
23
+ gem.metadata['changelog_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn/blob/main/CHANGELOG.md'
24
24
  gem.metadata['source_code_uri'] = 'https://github.com/tagliala/coveralls-ruby-reborn'
25
25
 
26
- gem.required_ruby_version = '>= 2.4'
26
+ gem.required_ruby_version = '>= 2.5'
27
27
 
28
- gem.add_dependency 'simplecov', '>= 0.18.1', '< 0.21.0'
28
+ gem.add_dependency 'simplecov', '>= 0.18.1', '< 0.22.0'
29
29
  gem.add_dependency 'term-ansicolor', '~> 1.6'
30
30
  gem.add_dependency 'thor', '>= 0.20.3', '< 2.0'
31
31
  gem.add_dependency 'tins', '~> 1.16'
32
32
 
33
33
  gem.add_development_dependency 'bundler', '>= 1.16', '< 3'
34
+ gem.add_development_dependency 'simplecov-lcov', '~> 0.8.0'
34
35
  end
@@ -107,6 +107,7 @@ module Coveralls
107
107
 
108
108
  def define_service_params_for_gitlab(config)
109
109
  config[:service_name] = 'gitlab-ci'
110
+ config[:service_number] = ENV['CI_PIPELINE_ID']
110
111
  config[:service_job_number] = ENV['CI_BUILD_NAME']
111
112
  config[:service_job_id] = ENV['CI_BUILD_ID']
112
113
  config[:service_branch] = ENV['CI_BUILD_REF_NAME']
@@ -179,7 +180,7 @@ module Coveralls
179
180
  # Remotes
180
181
  remotes = nil
181
182
  begin
182
- remotes = `git remote -v`.split(/\n/).map do |remote|
183
+ remotes = `git remote -v`.split("\n").map do |remote|
183
184
  splits = remote.split.compact
184
185
  { name: splits[0], url: splits[1] }
185
186
  end.uniq
@@ -45,6 +45,7 @@ module Coveralls
45
45
 
46
46
  # Get the coverage
47
47
  properties[:coverage] = file.coverage_data['lines']
48
+ properties[:branches] = branches(file.coverage_data['branches']) if file.coverage_data['branches']
48
49
 
49
50
  # Skip nocov lines
50
51
  file.lines.each_with_index do |line, i|
@@ -57,6 +58,19 @@ module Coveralls
57
58
  source_files
58
59
  end
59
60
 
61
+ def branches(simplecov_branches)
62
+ branches_properties = []
63
+ simplecov_branches.each do |branch_data, data|
64
+ branch_number = 0
65
+ line_number = branch_data.split(', ')[2].to_i
66
+ data.each_value do |hits|
67
+ branch_number += 1
68
+ branches_properties.concat([line_number, 0, branch_number, hits])
69
+ end
70
+ end
71
+ branches_properties
72
+ end
73
+
60
74
  def format(result)
61
75
  unless Coveralls.should_run?
62
76
  display_result result if Coveralls.noisy?
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Coveralls
4
- VERSION = '0.19.0'
4
+ VERSION = '0.23.0'
5
5
  end
@@ -219,9 +219,11 @@ describe Coveralls::Configuration do
219
219
  let(:service_job_number) { 'spec:one' }
220
220
  let(:service_job_id) { 1234 }
221
221
  let(:service_branch) { 'feature' }
222
+ let(:service_number) { 5678 }
222
223
 
223
224
  before do
224
225
  allow(ENV).to receive(:[]).with('CI_BUILD_NAME').and_return(service_job_number)
226
+ allow(ENV).to receive(:[]).with('CI_PIPELINE_ID').and_return(service_number)
225
227
  allow(ENV).to receive(:[]).with('CI_BUILD_ID').and_return(service_job_id)
226
228
  allow(ENV).to receive(:[]).with('CI_BUILD_REF_NAME').and_return(service_branch)
227
229
  allow(ENV).to receive(:[]).with('CI_BUILD_REF').and_return(commit_sha)
@@ -231,6 +233,7 @@ describe Coveralls::Configuration do
231
233
  config = {}
232
234
  described_class.define_service_params_for_gitlab(config)
233
235
  expect(config[:service_name]).to eq('gitlab-ci')
236
+ expect(config[:service_number]).to eq(service_number)
234
237
  expect(config[:service_job_number]).to eq(service_job_number)
235
238
  expect(config[:service_job_id]).to eq(service_job_id)
236
239
  expect(config[:service_branch]).to eq(service_branch)
@@ -80,6 +80,14 @@ describe Coveralls do
80
80
  end
81
81
 
82
82
  describe '#push!' do
83
+ let(:coverage_hash) do
84
+ { 'file.rb'=>{ 'lines'=>[nil] } }
85
+ end
86
+
87
+ before do
88
+ allow(SimpleCov::ResultMerger).to receive(:merge_valid_results).and_return([['RSpec'], coverage_hash])
89
+ end
90
+
83
91
  it 'sends existing test results' do
84
92
  result = false
85
93
  silence do
@@ -7,4 +7,10 @@ class Foo
7
7
  def bar
8
8
  @foo
9
9
  end
10
+
11
+ def foo
12
+ if @foo
13
+ 'bar'
14
+ end
15
+ end
10
16
  end
@@ -12,13 +12,25 @@ describe Coveralls::SimpleCov::Formatter do
12
12
  end
13
13
 
14
14
  let(:result) do
15
- SimpleCov::Result.new(source_fixture('app/controllers/sample.rb') => [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil],
16
- source_fixture('app/models/airplane.rb') => [0, 0, 0, 0, 0],
17
- source_fixture('app/models/dog.rb') => [1, 1, 1, 1, 1],
18
- source_fixture('app/models/house.rb') => [nil, nil, nil, nil, nil, nil, nil, nil, nil, nil],
19
- source_fixture('app/models/robot.rb') => [1, 1, 1, 1, nil, nil, 1, 0, nil, nil],
20
- source_fixture('app/models/user.rb') => [nil, 1, 1, 1, 1, 0, 1, 0, nil, nil],
21
- source_fixture('sample.rb') => [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil])
15
+ options = {
16
+ source_fixture('app/controllers/sample.rb') => { lines: [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil] },
17
+ source_fixture('app/models/airplane.rb') => { lines: [0, 0, 0, 0, 0] },
18
+ source_fixture('app/models/dog.rb') => { lines: [1, 1, 1, 1, 1] },
19
+ source_fixture('app/models/house.rb') => { lines: [nil, nil, nil, nil, nil, nil, nil, nil, nil, nil] },
20
+ source_fixture('app/models/robot.rb') => { lines: [1, 1, 1, 1, nil, nil, 1, 0, nil, nil] },
21
+ source_fixture('app/models/user.rb') => {
22
+ lines: [nil, 1, 1, 0, nil, nil, 1, 0, nil, nil, 1, 0, 0, nil, nil, nil],
23
+ 'branches' => {
24
+ '[:if, 0, 12, 4, 14, 7]' => {
25
+ '[:then, 1, 13, 6, 13, 11]' => 1,
26
+ '[:else, 2, 12, 4, 14, 7]' => 0
27
+ }
28
+ }
29
+ },
30
+ source_fixture('sample.rb') => { lines: [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil] }
31
+ }
32
+
33
+ SimpleCov::Result.new(options)
22
34
  end
23
35
 
24
36
  describe '#format' do
@@ -70,12 +82,38 @@ describe Coveralls::SimpleCov::Formatter do
70
82
  end
71
83
 
72
84
  describe '#get_source_files' do
73
- let(:source_files) { described_class.new.get_source_files(result) }
85
+ let(:source_files) { instance.get_source_files(result) }
86
+ let(:instance) do
87
+ described_class.new.tap do |ins|
88
+ allow(ins).to receive(:branches)
89
+ end
90
+ end
74
91
 
75
92
  it 'nils the skipped lines' do
76
93
  source_file = source_files.first
77
94
  expect(source_file[:coverage]).to eq [nil, 1, 1, 1, nil, 0, 1, 1, nil, nil, nil, nil, nil]
78
95
  end
96
+
97
+ it 'calls #branches when branch coverage is present' do
98
+ source_files
99
+ expect(instance).to have_received(:branches).once
100
+ end
101
+ end
102
+
103
+ describe '#branches' do
104
+ let(:branch_coverage_parsed) { described_class.new.branches(simplecov_branches_results) }
105
+ let(:simplecov_branches_results) do
106
+ {
107
+ '[:if, 0, 12, 4, 14, 7]' => {
108
+ '[:then, 1, 13, 6, 13, 11]' => 1,
109
+ '[:else, 2, 12, 4, 14, 7]' => 0
110
+ }
111
+ }
112
+ end
113
+
114
+ it 'return coveralls required structure' do
115
+ expect(branch_coverage_parsed).to eq [12, 0, 1, 1, 12, 0, 2, 0]
116
+ end
79
117
  end
80
118
 
81
119
  describe '#short_filename' do
data/spec/spec_helper.rb CHANGED
@@ -13,11 +13,25 @@ class InceptionFormatter
13
13
  end
14
14
 
15
15
  def setup_formatter
16
- SimpleCov.formatter = if ENV['TRAVIS'] || ENV['COVERALLS_REPO_TOKEN']
17
- InceptionFormatter
18
- else
19
- SimpleCov::Formatter::HTMLFormatter
20
- end
16
+ if ENV['GITHUB_ACTIONS']
17
+ require 'simplecov-lcov'
18
+
19
+ SimpleCov::Formatter::LcovFormatter.config do |c|
20
+ c.report_with_single_file = true
21
+ c.single_report_path = 'coverage/lcov.info'
22
+ end
23
+ end
24
+
25
+ SimpleCov.formatter =
26
+ if ENV['CI'] || ENV['COVERALLS_REPO_TOKEN']
27
+ if ENV['GITHUB_ACTIONS']
28
+ SimpleCov::Formatter::MultiFormatter.new([InceptionFormatter, SimpleCov::Formatter::LcovFormatter])
29
+ else
30
+ InceptionFormatter
31
+ end
32
+ else
33
+ SimpleCov::Formatter::HTMLFormatter
34
+ end
21
35
 
22
36
  SimpleCov.start do
23
37
  add_filter do |source_file|
@@ -49,15 +63,8 @@ end
49
63
 
50
64
  def stub_api_post
51
65
  body = '{"message":"","url":""}'
52
- stub_request(:post, "#{Coveralls::API::API_BASE}/jobs").with(
53
- headers: {
54
- 'Accept' => '*/*; q=0.5, application/xml',
55
- 'Accept-Encoding' => 'gzip, deflate',
56
- 'Content-Length' => /.+/,
57
- 'Content-Type' => /.+/,
58
- 'User-Agent' => 'Ruby'
59
- }
60
- ).to_return(status: 200, body: body, headers: {})
66
+ stub_request(:post, "#{Coveralls::API::API_BASE}/jobs")
67
+ .to_return(status: 200, body: body, headers: {})
61
68
  end
62
69
 
63
70
  def silence(&block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: coveralls_reborn
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nick Merwin
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-12-02 00:00:00.000000000 Z
13
+ date: 2021-09-12 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: simplecov
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 0.18.1
22
22
  - - "<"
23
23
  - !ruby/object:Gem::Version
24
- version: 0.21.0
24
+ version: 0.22.0
25
25
  type: :runtime
26
26
  prerelease: false
27
27
  version_requirements: !ruby/object:Gem::Requirement
@@ -31,7 +31,7 @@ dependencies:
31
31
  version: 0.18.1
32
32
  - - "<"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.21.0
34
+ version: 0.22.0
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: term-ansicolor
37
37
  requirement: !ruby/object:Gem::Requirement
@@ -100,6 +100,20 @@ dependencies:
100
100
  - - "<"
101
101
  - !ruby/object:Gem::Version
102
102
  version: '3'
103
+ - !ruby/object:Gem::Dependency
104
+ name: simplecov-lcov
105
+ requirement: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.8.0
110
+ type: :development
111
+ prerelease: false
112
+ version_requirements: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 0.8.0
103
117
  description: A Ruby implementation of the Coveralls API.
104
118
  email:
105
119
  - nick@lemurheavy.com
@@ -110,10 +124,12 @@ executables:
110
124
  extensions: []
111
125
  extra_rdoc_files: []
112
126
  files:
127
+ - ".github/dependabot.yml"
128
+ - ".github/workflows/rubocop.yml"
129
+ - ".github/workflows/ruby.yml"
113
130
  - ".gitignore"
114
131
  - ".rspec"
115
132
  - ".rubocop.yml"
116
- - ".travis.yml"
117
133
  - CHANGELOG.md
118
134
  - Gemfile
119
135
  - LICENSE
@@ -147,7 +163,7 @@ licenses:
147
163
  - MIT
148
164
  metadata:
149
165
  bug_tracker_uri: https://github.com/tagliala/coveralls-ruby-reborn/issues
150
- changelog_uri: https://github.com/tagliala/coveralls-ruby-reborn/blob/master/CHANGELOG.md
166
+ changelog_uri: https://github.com/tagliala/coveralls-ruby-reborn/blob/main/CHANGELOG.md
151
167
  source_code_uri: https://github.com/tagliala/coveralls-ruby-reborn
152
168
  post_install_message:
153
169
  rdoc_options: []
@@ -157,14 +173,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
157
173
  requirements:
158
174
  - - ">="
159
175
  - !ruby/object:Gem::Version
160
- version: '2.4'
176
+ version: '2.5'
161
177
  required_rubygems_version: !ruby/object:Gem::Requirement
162
178
  requirements:
163
179
  - - ">="
164
180
  - !ruby/object:Gem::Version
165
181
  version: '0'
166
182
  requirements: []
167
- rubygems_version: 3.1.4
183
+ rubygems_version: 3.1.6
168
184
  signing_key:
169
185
  specification_version: 4
170
186
  summary: A Ruby implementation of the Coveralls API.
data/.travis.yml DELETED
@@ -1,26 +0,0 @@
1
- os: linux
2
- dist: bionic
3
- language: ruby
4
-
5
- cache: bundler
6
-
7
- env:
8
- global:
9
- # --dev improves JRuby startup time
10
- # --debug reports proper coverage to SimpleCov
11
- # See https://github.com/jruby/jruby/wiki/Improving-startup-time
12
- - JRUBY_OPTS="--dev --debug"
13
-
14
- rvm:
15
- - 2.4.10
16
- - 2.5.8
17
- - 2.6.6
18
- - 2.7.2
19
- - ruby-head
20
- - jruby-9.2.13.0
21
-
22
- jobs:
23
- allow_failures:
24
- - rvm: ruby-head
25
- - rvm: jruby-9.2.13.0
26
- fast_finish: true