Skip to content

Commit

Permalink
Update Ruby version to 3.3.5 and update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
andrew committed Sep 9, 2024
1 parent b23acd7 commit 73f9ed5
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.3.4
ruby-version: 3.3.5
bundler-cache: true

- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.4
3.3.5
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ First things first, you'll need to fork and clone the project to your local mach

The project uses ruby on rails which have a number of system dependencies you'll need to install.

- [ruby 3.3.4](https://www.ruby-lang.org/en/documentation/installation/)
- [ruby 3.3.5](https://www.ruby-lang.org/en/documentation/installation/)
- [postgresql 14](https://www.postgresql.org/download/)
- [redis 6+](https://redis.io/download/)
- [node.js 16+](https://nodejs.org/en/download/)
Expand Down
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.4-alpine3.19
FROM ruby:3.3.5-alpine3.19

ENV APP_ROOT /usr/src/app
ENV DATABASE_PORT 5432
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }

ruby "3.3.4"
ruby "3.3.5"

gem "rails", "~> 7.2.1"
gem "sprockets-rails"
Expand Down Expand Up @@ -33,6 +33,7 @@ gem 'google-protobuf'
gem 'groupdate'
gem 'redis'
gem 'csv'
gem 'ostruct'

group :development, :test do
gem 'dotenv-rails'
Expand Down
4 changes: 3 additions & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ GEM
nokogiri (1.16.7-x86_64-linux)
racc (~> 1.4)
numerizer (0.1.1)
ostruct (0.6.0)
pagy (9.0.9)
pg (1.5.8)
pg_query (5.1.0)
Expand Down Expand Up @@ -354,6 +355,7 @@ DEPENDENCIES
jbuilder
jquery-rails
mocha
ostruct
pagy
pg (~> 1.5)
pg_query
Expand All @@ -379,7 +381,7 @@ DEPENDENCIES
webmock

RUBY VERSION
ruby 3.3.4p31
ruby 3.3.5p31

BUNDLED WITH
2.5.18

0 comments on commit 73f9ed5

Please sign in to comment.