mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-24 17:04:43 +00:00
Updated to ruby 4.0.1
This commit is contained in:
@@ -1 +1 @@
|
|||||||
ruby-3.2.0
|
ruby-4.0.1
|
||||||
2
Gemfile
2
Gemfile
@@ -1,6 +1,6 @@
|
|||||||
source 'https://rubygems.org'
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
ruby '3.2.0'
|
ruby '4.0.1'
|
||||||
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
|
||||||
gem 'rails', '8.1.2'
|
gem 'rails', '8.1.2'
|
||||||
|
|
||||||
|
|||||||
@@ -117,8 +117,9 @@ GEM
|
|||||||
influxdb (~> 0.6, >= 0.6.4)
|
influxdb (~> 0.6, >= 0.6.4)
|
||||||
railties (>= 5.0)
|
railties (>= 5.0)
|
||||||
io-console (0.8.2)
|
io-console (0.8.2)
|
||||||
irb (1.16.0)
|
irb (1.17.0)
|
||||||
pp (>= 0.6.0)
|
pp (>= 0.6.0)
|
||||||
|
prism (>= 1.3.0)
|
||||||
rdoc (>= 4.0.0)
|
rdoc (>= 4.0.0)
|
||||||
reline (>= 0.4.2)
|
reline (>= 0.4.2)
|
||||||
jbuilder (2.14.1)
|
jbuilder (2.14.1)
|
||||||
@@ -377,7 +378,7 @@ DEPENDENCIES
|
|||||||
tzinfo-data
|
tzinfo-data
|
||||||
|
|
||||||
RUBY VERSION
|
RUBY VERSION
|
||||||
ruby 3.2.0p0
|
ruby 4.0.1p0
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
2.6.9
|
2.6.9
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ This application is being created to run a wrestling tournament.
|
|||||||
**Public Production Url:** [https://wrestlingdev.com](https://wrestlingdev.com)
|
**Public Production Url:** [https://wrestlingdev.com](https://wrestlingdev.com)
|
||||||
|
|
||||||
**App Info**
|
**App Info**
|
||||||
* Ruby 3.2.0
|
* Ruby 4.0.1
|
||||||
* Rails 8.1.2
|
* Rails 8.1.2
|
||||||
* DB MySQL/MariaDB
|
* DB MySQL/MariaDB
|
||||||
* Solid Cache -> MySQL/MariaDB for html partial caching
|
* Solid Cache -> MySQL/MariaDB for html partial caching
|
||||||
|
|||||||
@@ -57,6 +57,5 @@ module Wrestling
|
|||||||
config.active_support.cache_format_version = 7.1
|
config.active_support.cache_format_version = 7.1
|
||||||
|
|
||||||
config.load_defaults 8.1
|
config.load_defaults 8.1
|
||||||
config.active_support.to_time_preserves_timezone = :zone
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM ruby:3.2.0
|
FROM ruby:4.0.1
|
||||||
|
|
||||||
# Accept build arguments for user/group IDs
|
# Accept build arguments for user/group IDs
|
||||||
ARG USER_ID=1000
|
ARG USER_ID=1000
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
FROM ruby:3.2.0-slim
|
FROM ruby:4.0.1-slim
|
||||||
|
|
||||||
#HEALTHCHECK --start-period=60s CMD curl http://127.0.0.1/
|
#HEALTHCHECK --start-period=60s CMD curl http://127.0.0.1/
|
||||||
|
|
||||||
@@ -15,6 +15,8 @@ RUN apt-get -qq update --fix-missing \
|
|||||||
libsqlite3-dev \
|
libsqlite3-dev \
|
||||||
wget \
|
wget \
|
||||||
default-libmysqlclient-dev \
|
default-libmysqlclient-dev \
|
||||||
|
libyaml-dev \
|
||||||
|
pkg-config \
|
||||||
nodejs \
|
nodejs \
|
||||||
tzdata \
|
tzdata \
|
||||||
git \
|
git \
|
||||||
|
|||||||
Reference in New Issue
Block a user