Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-4.0.1
ruby-4.0.6
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby 4.0.1
ruby 4.0.6
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,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.4
ARG RUBY_VERSION=4.0.6
FROM docker.io/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,5 +1,5 @@
source "https://rubygems.org"
ruby "4.0.1"
ruby "4.0.6"

gem "bcrypt", "~> 3.1"
gem "bootsnap", require: false
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -581,7 +581,7 @@ DEPENDENCIES
web-console

RUBY VERSION
ruby 4.0.1
ruby 4.0.6

BUNDLED WITH
4.0.0
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Student Visit Application

![Ruby Version](https://img.shields.io/badge/ruby-3.3.4-red.svg)
![Ruby Version](https://img.shields.io/badge/ruby-4.0.6-red.svg)
![Rails Version](https://img.shields.io/badge/rails-8.1.1-red.svg)
![PostgreSQL](https://img.shields.io/badge/postgresql-supported-blue.svg)

Expand All @@ -19,7 +19,7 @@ A comprehensive web application for managing student visits, appointments, and q

## Technology Stack

- **Ruby**: 3.3.4
- **Ruby**: 4.0.6
- **Rails**: 8.1.1
- **Database**: PostgreSQL (staging/production), SQLite3 (development/test)
- **Frontend**: Tailwind CSS, Stimulus.js, Turbo
Expand All @@ -33,7 +33,7 @@ A comprehensive web application for managing student visits, appointments, and q

### System Dependencies

- Ruby 3.3.4
- Ruby 4.0.6
- PostgreSQL (for staging/production environments)
- Node.js and npm/yarn (for asset compilation)
- ImageMagick (for image processing)
Expand Down Expand Up @@ -71,9 +71,9 @@ echo 'export PATH="$HOME/.rbenv/bin:$PATH"' >> ~/.bashrc
echo 'eval "$(rbenv init -)"' >> ~/.bashrc
source ~/.bashrc

# Install Ruby 3.3.4
rbenv install 3.3.4
rbenv global 3.3.4
# Install Ruby 4.0.6
rbenv install 4.0.6
rbenv global 4.0.6

# Verify installation
ruby -v
Expand Down Expand Up @@ -295,7 +295,7 @@ sudo certbot --nginx -d your-domain.com

### Prerequisites

- Ruby 3.3.4
- Ruby 4.0.6
- SQLite3 (for development)
- Node.js 20+

Expand Down
2 changes: 1 addition & 1 deletion config/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ builder:
#
# # Pass arguments and secrets to the Docker build process
# args:
# RUBY_VERSION: ruby-3.3.4
# RUBY_VERSION: ruby-4.0.6
# secrets:
# - GITHUB_TOKEN
# - RAILS_MASTER_KEY
Expand Down