Skip to content

Commit

Permalink
[yegor256#32] update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
pnatashap committed Feb 4, 2024
1 parent e9ddad8 commit 4056022
Show file tree
Hide file tree
Showing 67 changed files with 248 additions and 212 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ on:
- master
jobs:
codecov:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: |
sudo apt-get update
sudo apt-get install -y postgresql-14
sudo ln -s /usr/lib/postgresql/14/bin/initdb /bin/initdb
sudo ln -s /usr/lib/postgresql/14/bin/postgres /bin/postgres
- uses: actions/setup-ruby@v1
- uses: ruby/setup-ruby@v1
with:
ruby-version: 3.0
- run: bundle update
- run: bundle exec rake
- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: coverage/.resultset.json
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
2 changes: 1 addition & 1 deletion .github/workflows/rake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: test
strategy:
matrix:
os: [ubuntu-20.04]
os: [ubuntu-22.04]
ruby: [3.0, 2.7]
runs-on: ${{ matrix.os }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/xcop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: xcop
- master
jobs:
xcop:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: g4s8/xcop-action@master
Expand Down
6 changes: 4 additions & 2 deletions .simplecov
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# frozen_string_literal: true

# Copyright (c) 2019-2023 Yegor Bugayenko
# Copyright (c) 2019-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
Expand Down Expand Up @@ -32,5 +32,7 @@ SimpleCov.formatter = if Gem.win_platform?
end
SimpleCov.start do
add_filter '/test/'
add_filter '/features/'
add_filter '/liquibase/'
add_filter '/views/' # haml is not supported
minimum_coverage 30 if ENV['RACK_ENV'] == 'test'
end
2 changes: 1 addition & 1 deletion 0rsk.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

# Copyright (c) 2019-2023 Yegor Bugayenko
# Copyright (c) 2019-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
Expand Down
29 changes: 15 additions & 14 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# frozen_string_literal: true

# Copyright (c) 2019-2023 Yegor Bugayenko
# Copyright (c) 2019-2024 Yegor Bugayenko
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the 'Software'), to deal
Expand All @@ -22,28 +22,29 @@
source 'https://rubygems.org'

gem 'eslintrb', '2.1.0'
gem 'glogin', '0.13.0'
gem 'haml', '5.0.4'
gem 'iri', '0.7.0'
gem 'loog', '0.3.1'
gem 'minitest', '5.18.1', require: false
gem 'glogin', '0.14.2'
gem 'haml', '5.2.0'
gem 'iri', '0.8.0'
gem 'loog', '0.5.1'
gem 'minitest', '5.21.2', require: false
gem 'minitest-reporters', '1.6.0', require: false
gem 'pgtk', '0.8.1'
gem 'pgtk', '0.9.2'
gem 'rack', '2.2.4'
gem 'rack-ssl', '1.4.1'
gem 'rack-test', '2.1.0'
gem 'rake', '13.0.6', require: false
gem 'rake', '13.1.0', require: false
gem 'relative_time', '1.1.0'
gem 'rerun', '0.14.0', require: false
gem 'rspec-rails', '6.0.3', require: false
gem 'rubocop', '1.56.0', require: false
gem 'rubocop-rspec', '2.23.2', require: false
gem 'rspec-rails', '6.1.1', require: false
gem 'rubocop', '1.60.2', require: false
gem 'rubocop-rspec', '2.26.1', require: false
gem 'sass', '3.7.4'
gem 'sentry-raven', '3.1.2'
gem 'simplecov', '0.22.0'
gem 'sinatra', '3.0.6'
gem 'sinatra-contrib', '3.0.6'
gem 'sprockets', '4.2.0'
gem 'simplecov-cobertura', '~> 2.1'
gem 'sinatra', '3.2.0'
gem 'sinatra-contrib', '3.2.0'
gem 'sprockets', '4.2.1'
gem 'telebot', '0.1.2'
gem 'thin', '1.8.2'
gem 'xcop', '0.7.1'
Loading

0 comments on commit 4056022

Please sign in to comment.