Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/test-and-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,6 @@ jobs:

- name: Publish code coverage report
uses: codecov/codecov-action@v3
if: matrix.ruby-version == '3.0'
with:
token: ${{ secrets.CODECOV_TOKEN }}
10 changes: 6 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ GEM
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
ast (2.4.2)
codecov (0.6.0)
simplecov (>= 0.15, < 0.22)
coderay (1.1.3)
crack (0.4.5)
rexml
Expand Down Expand Up @@ -75,10 +73,13 @@ GEM
rubocop-ast (1.30.0)
parser (>= 3.2.1.0)
ruby-progressbar (1.13.0)
simplecov (0.21.2)
simplecov (0.22.0)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov_json_formatter (~> 0.1)
simplecov-cobertura (2.1.0)
rexml
simplecov (~> 0.19)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
unf (0.1.4)
Expand All @@ -97,12 +98,13 @@ PLATFORMS

DEPENDENCIES
bundler (~> 2.2, >= 2.2.32)
codecov (~> 0.6.0)
crowdin-api!
pry (~> 0.14.1)
rake (~> 13.0, >= 13.0.6)
rspec (~> 3.10)
rubocop (~> 1.23)
simplecov (~> 0.22)
simplecov-cobertura (~> 2.1)
webmock (~> 3.14)
yard (~> 0.9.28)

Expand Down
3 changes: 2 additions & 1 deletion crowdin-api.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency 'rest-client', '>= 2.0.0', '< 2.2.0'

gem.add_development_dependency 'bundler', '~> 2.2', '>= 2.2.32'
gem.add_development_dependency 'codecov', '~> 0.6.0'
gem.add_development_dependency 'pry', '~> 0.14.1'
gem.add_development_dependency 'rake', '~> 13.0', '>= 13.0.6'
gem.add_development_dependency 'rspec', '~> 3.10'
gem.add_development_dependency 'rubocop', '~> 1.23'
gem.add_development_dependency 'simplecov', '~> 0.22'
gem.add_development_dependency 'simplecov-cobertura', '~> 2.1'
gem.add_development_dependency 'webmock', '~> 3.14'
end
4 changes: 2 additions & 2 deletions spec/spec_helper.rb
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# frozen_string_literal: true

require 'simplecov'
require 'codecov'
require 'simplecov-cobertura'

SimpleCov.start
SimpleCov.formatter = SimpleCov::Formatter::Codecov
SimpleCov.formatter = SimpleCov::Formatter::CoberturaFormatter

require 'webmock/rspec'
require 'crowdin-api'
Expand Down