Skip to content

Commit

Permalink
Bump stuff. Rubocop offends
Browse files Browse the repository at this point in the history
  • Loading branch information
top4ek committed Jun 29, 2024
1 parent 2ac32f8 commit a4d37b4
Show file tree
Hide file tree
Showing 28 changed files with 212 additions and 236 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/shizoid.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: 'Setup Ruby'
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.1
ruby-version: 3.3.3
- name: "Install required system packages"
run: sudo apt-get update -y && sudo apt-get install openssh-client rsync libpq-dev cmake -y
- name: "Bundle install"
Expand Down
14 changes: 0 additions & 14 deletions .rubocop_todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,20 +44,6 @@ Naming/AccessorMethodName:
RSpec/ExampleLength:
Max: 11

# Offense count: 7
# This cop supports safe autocorrection (--autocorrect).
# Configuration parameters: Include.
# Include: spec/factories.rb, spec/factories/**/*.rb, features/support/factories/**/*.rb
RSpec/FactoryBot/FactoryClassName:
Exclude:
- 'spec/factories/chat.rb'
- 'spec/factories/participation.rb'
- 'spec/factories/telegram/chat.rb'
- 'spec/factories/telegram/chat_photo.rb'
- 'spec/factories/telegram/update.rb'
- 'spec/factories/telegram/user.rb'
- 'spec/factories/user.rb'

# Offense count: 1
# Configuration parameters: Include, CustomTransform, IgnoreMethods, SpecSuffixOnly.
# Include: **/*_spec*rb*, **/spec/**/*
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1
3.3.3
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3.1-alpine
FROM ruby:3.3.3-alpine

EXPOSE 3000
WORKDIR /opt/app/src
Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby '3.3.1'
ruby '3.3.3'

gem 'faraday'
gem 'pg'
Expand All @@ -16,7 +16,7 @@ gem 'sentry-sidekiq'
gem 'sidekiq', '< 7'
gem 'sidekiq-cron'
gem 'sidekiq-limit_fetch'
gem 'telegram-bot-ruby'
gem 'telegram-bot-ruby', '~> 0.23.0'

group :development, :test do
gem 'debug'
Expand Down
Loading

0 comments on commit a4d37b4

Please sign in to comment.