Skip to content

Commit

Permalink
Update ruby to version 3.2.5
Browse files Browse the repository at this point in the history
Update ruby to version 3.2.5
  • Loading branch information
jayjay-w committed Sep 30, 2024
1 parent d451db7 commit d203fa4
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.1.6-slim
FROM ruby:3.2.5-slim
MAINTAINER Meedan <[email protected]>

# the Rails stage can be overridden from the caller
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
source 'https://rubygems.org'
gem 'rails', '~> 6.1.7'
gem 'pg', '1.1'
gem 'pg', '~> 1.4'
group :development, :test do
gem 'byebug'
gem 'gem-licenses'
Expand Down
2 changes: 1 addition & 1 deletion lib/tasks/client_gem.rake
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ namespace :lapis do
version_file = File.join(basedir, 'version.rb')
current_version = '0.1.0'
new_version = '0.0.1'
if File.exists?(version_file)
if File.exist?(version_file)
number = File.readlines(version_file)[1].gsub(/[^0-9\.]/, '').gsub('0.0.', '').to_i
new_version = '0.0.' + (number + 1).to_s
end
Expand Down
2 changes: 1 addition & 1 deletion production/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# meedan/pender
# https://github.com/meedan/pender

FROM ruby:3.1.6-slim
FROM ruby:3.2.5-slim
MAINTAINER [email protected]

ENV DEPLOYUSER=pender \
Expand Down
2 changes: 1 addition & 1 deletion test/performance/base_performance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ def self.test_order

def teardown
tmp = File.join(Rails.root, 'tmp', 'cache')
if File.exists?(tmp)
if File.exist?(tmp)
Rails.cache.clear
else
FileUtils.mkdir_p(tmp)
Expand Down

0 comments on commit d203fa4

Please sign in to comment.