diff --git a/.rubocop.yml b/.rubocop.yml index 58c38a1..e6b4256 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -3,7 +3,7 @@ require: - rubocop-factory_bot AllCops: - TargetRubyVersion: 3.3.1 + TargetRubyVersion: 3.3.2 Bundler/DuplicatedGem: Enabled: true diff --git a/.ruby-version b/.ruby-version index bea438e..4772543 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -3.3.1 +3.3.2 diff --git a/Dockerfile b/Dockerfile index 4438284..381589f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ # For a containerized dev environment, see Dev Containers: https://guides.rubyonrails.org/getting_started_with_devcontainer.html # Make sure RUBY_VERSION matches the Ruby version in .ruby-version -ARG RUBY_VERSION=3.3.1 +ARG RUBY_VERSION=3.3.2 FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here diff --git a/Gemfile b/Gemfile index 0b6c4a4..8cd3b23 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source "https://rubygems.org" -ruby "3.3.1" +ruby "3.3.2" gem "bootsnap", "~> 1.18", ">= 1.18.3", require: false gem "jbuilder", "~> 2.12" diff --git a/Gemfile.lock b/Gemfile.lock index acf30af..e11bdf9 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -183,18 +183,8 @@ GEM net-smtp (0.5.0) net-protocol nio4r (2.7.3) - nokogiri (1.16.6-aarch64-linux) - racc (~> 1.4) - nokogiri (1.16.6-arm-linux) - racc (~> 1.4) nokogiri (1.16.6-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.6-x86-linux) - racc (~> 1.4) - nokogiri (1.16.6-x86_64-darwin) - racc (~> 1.4) - nokogiri (1.16.6-x86_64-linux) - racc (~> 1.4) orm_adapter (0.5.0) parallel (1.25.1) parser (3.3.3.0) @@ -336,12 +326,7 @@ GEM zeitwerk (2.6.16) PLATFORMS - aarch64-linux - arm-linux arm64-darwin - x86-linux - x86_64-darwin - x86_64-linux DEPENDENCIES bootsnap (~> 1.18, >= 1.18.3) @@ -376,7 +361,7 @@ DEPENDENCIES web-console (~> 4.2, >= 4.2.1) RUBY VERSION - ruby 3.3.1p55 + ruby 3.3.2p78 BUNDLED WITH 2.5.10 diff --git a/README.md b/README.md index 431bae5..7be3249 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Shore is a Ruby on Rails template with modern stack to start your new project. ## Features ⚡️ -- **Ruby**: Ruby 3.3.1 +- **Ruby**: Ruby 3.3.2 - **Rails**: [Rails 7.1](https://rubyonrails.org) - **PostgreSQL**: [PostgresSQL 16.3](https://www.postgresql.org) - **Tailwind CSS**: Uses [Tailwind CSS](https://tailwindcss.com) for styling. @@ -43,7 +43,7 @@ Shore is a Ruby on Rails template with modern stack to start your new project. ### System Requirements You will need the following to run the application. -- [**Ruby 3.3.1**](./docs/installing_prerequisites.md#ruby) +- [**Ruby 3.3.2**](./docs/installing_prerequisites.md#ruby) - [**PostgreSQL 16.3**](./docs/installing_prerequisites.md#postgresql) - [**Bun**](./docs/installing_prerequisites.md#bun) diff --git a/bun.lockb b/bun.lockb index 4edfced..87db7e8 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/docs/installing_prerequisites.md b/docs/installing_prerequisites.md index 38a8351..0c315d7 100644 --- a/docs/installing_prerequisites.md +++ b/docs/installing_prerequisites.md @@ -10,7 +10,7 @@ brew install rbenv ruby-build 2. Install ruby with the version in [.ruby-version](./../.ruby-version) ``` -rbenv install 3.3.1 +rbenv install 3.3.2 ``` 3. Check the version @@ -18,7 +18,7 @@ rbenv install 3.3.1 ruby -v ``` ``` -ruby 3.3.1 (2024-04-23 revision c56cd86388) [arm64-darwin23] +ruby 3.3.2 (2024-04-23 revision c56cd86388) [arm64-darwin23] ``` ## PostgreSQL