Skip to content

Commit

Permalink
Update ruby
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander committed Jan 12, 2024
1 parent 77fadcb commit 4b3f001
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 11 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
!/tmp/.keep
.byebug_history
.idea
.ruby-lsp
.vagrant
.version
*.sublime-project
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:
- rubocop-rails

AllCops:
TargetRubyVersion: 3.1
TargetRubyVersion: 3.3
Exclude:
- db/schema.rb
- bin/*
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.2.2
3.3.0
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.2.2-alpine
FROM ruby:3.3.0-alpine

EXPOSE 3000
WORKDIR /opt/app/src
Expand Down
2 changes: 1 addition & 1 deletion 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.2.2'
ruby '3.3.0'

gem 'faraday'
gem 'pg'
Expand Down
12 changes: 6 additions & 6 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ GEM
marcel (1.0.2)
method_source (1.0.0)
mini_mime (1.1.2)
mini_portile2 (2.8.0)
mini_portile2 (2.8.5)
minitest (5.15.0)
multipart-post (2.2.0)
nenv (0.3.0)
Expand All @@ -199,8 +199,8 @@ GEM
net-protocol
timeout
nio4r (2.5.8)
nokogiri (1.13.6)
mini_portile2 (~> 2.8.0)
nokogiri (1.16.0)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
notiffany (0.1.3)
nenv (~> 0.1)
Expand All @@ -216,8 +216,8 @@ GEM
puma (5.6.4)
nio4r (~> 2.0)
raabro (1.4.0)
racc (1.6.0)
rack (2.2.3.1)
racc (1.7.3)
rack (2.2.8)
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails (7.0.3)
Expand Down Expand Up @@ -392,7 +392,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.2.2p53
ruby 3.3.0p0

BUNDLED WITH
2.3.7
2 changes: 1 addition & 1 deletion config/deploy/Containerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.io/ruby:3.2.2-alpine
FROM docker.io/ruby:3.3.0-alpine
EXPOSE 3000
WORKDIR /opt/app/src
ENV LANG ru_RU.utf8
Expand Down

0 comments on commit 4b3f001

Please sign in to comment.