Skip to content

Commit

Permalink
Upgraded to 3.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yatish27 committed Jul 20, 2024
1 parent e363e72 commit c5a35f2
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ require:
- rubocop-factory_bot

AllCops:
TargetRubyVersion: 3.3.1
TargetRubyVersion: 3.3.2

Bundler/DuplicatedGem:
Enabled: true
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.2
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
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"

ruby "3.3.1"
ruby "3.3.2"

gem "bootsnap", "~> 1.18", ">= 1.18.3", require: false
gem "jbuilder", "~> 2.12"
Expand Down
17 changes: 1 addition & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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)

Expand Down
Binary file modified bun.lockb
Binary file not shown.
4 changes: 2 additions & 2 deletions docs/installing_prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ 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
```
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
Expand Down

0 comments on commit c5a35f2

Please sign in to comment.