Skip to content

Commit

Permalink
[gh383] Downgrade ruby to 3.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
andyduong1920 committed Mar 1, 2023
1 parent ced9f73 commit fa3542e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_production_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ env:
APP_NAME: rails_templates
DOCKER_IMAGE: ${{ github.repository }}
DOCKER_REGISTRY_HOST: ${{ secrets.DOCKER_REGISTRY_HOST }}
RUBY_VERSION: 3.2.1
RUBY_VERSION: 3.0.5
NODE_VERSION: 16
RAILS_VERSION: 7.0.4.2

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Test Template
on: push

env:
RUBY_VERSION: 3.2.1
RUBY_VERSION: 3.0.5

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_variants.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ env:
DOCKER_REGISTRY_HOST: ${{ secrets.DOCKER_REGISTRY_HOST }}
DOCKER_REGISTRY_USERNAME: ${{ github.repository_owner }}
DOCKER_REGISTRY_TOKEN: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
RUBY_VERSION: 3.2.1
RUBY_VERSION: 3.0.5
NODE_VERSION: 16
RAILS_VERSION: 7.0.4.2

Expand Down
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodejs 18.14.0
ruby 3.2.1
ruby 3.0.5
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with building complex applications over the years.

### Requirements

- Install ruby and set your local ruby version to `3.2.1`
- Install ruby and set your local ruby version to `3.0.5`
- Install rails `7.0.4.2`
- Install node `18.14.0` (For creating web application)

Expand Down
2 changes: 1 addition & 1 deletion template.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
APP_NAME_HUMANIZED = app_name.split(/[-_]/).map(&:capitalize).join(' ').gsub(/ Web$/, '')
DOCKER_REGISTRY_HOST = 'docker.io'
DOCKER_IMAGE = "nimblehq/#{APP_NAME}".freeze
RUBY_VERSION = '3.2.1'
RUBY_VERSION = '3.0.5'
POSTGRES_VERSION = '15.2'
REDIS_VERSION = '7.0.8'
# Variants
Expand Down

0 comments on commit fa3542e

Please sign in to comment.