Skip to content

Commit d727163

Browse files
committed
to ruby 3.1.2
1 parent 235a90b commit d727163

File tree

4 files changed

+19
-6
lines changed

4 files changed

+19
-6
lines changed

.circleci/config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ orbs:
44
jobs:
55
test:
66
docker:
7-
- image: cimg/ruby:3.0-node
7+
- image: cimg/ruby:3.1.2-node
88
environment:
9-
BUNDLER_VERSION: 2.2
9+
BUNDLER_VERSION: 2.2.33
1010
PGHOST: 127.0.0.1
1111
PGUSER: postgres
1212
RAILS_ENV: test
13-
- image: circleci/postgres:11.8
13+
- image: cimg/postgres:14.0
1414
environment:
1515
POSTGRES_HOST_AUTH_METHOD: trust
1616
steps:

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.0.5
1+
3.1.2

Gemfile

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
source 'https://rubygems.org'
22
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
33

4-
ruby '3.0.5'
4+
ruby '3.1.2'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
77
gem 'rails', '6.0.4.7'
@@ -69,3 +69,6 @@ gem 'rubyXL'
6969
gem 'kaminari'
7070
gem 'sassc-rails'
7171
gem 'rexml'
72+
gem 'psych', '~> 3'
73+
gem 'matrix'
74+
gem 'net-smtp'

Gemfile.lock

+11-1
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,22 @@ GEM
121121
mail (2.7.1)
122122
mini_mime (>= 0.1.1)
123123
marcel (1.0.2)
124+
matrix (0.4.2)
124125
method_source (1.0.0)
125126
mini_mime (1.1.0)
126127
mini_portile2 (2.8.0)
127128
minitest (5.15.0)
128129
msgpack (1.4.5)
130+
net-protocol (0.2.1)
131+
timeout
132+
net-smtp (0.3.3)
133+
net-protocol
129134
nio4r (2.5.8)
130135
nokogiri (1.13.3)
131136
mini_portile2 (~> 2.8.0)
132137
racc (~> 1.4)
133138
pg (1.2.3)
139+
psych (3.3.4)
134140
public_suffix (4.0.6)
135141
puma (5.6.4)
136142
nio4r (~> 2.0)
@@ -226,6 +232,7 @@ GEM
226232
thor (1.2.1)
227233
thread_safe (0.3.6)
228234
tilt (2.0.10)
235+
timeout (0.3.1)
229236
turbolinks (5.2.1)
230237
turbolinks-source (~> 5.2)
231238
turbolinks-source (5.2.0)
@@ -263,7 +270,10 @@ DEPENDENCIES
263270
jbuilder
264271
kaminari
265272
listen
273+
matrix
274+
net-smtp
266275
pg
276+
psych (~> 3)
267277
puma
268278
rails (= 6.0.4.7)
269279
rexml
@@ -282,7 +292,7 @@ DEPENDENCIES
282292
webdrivers
283293

284294
RUBY VERSION
285-
ruby 3.0.5p211
295+
ruby 3.1.2p20
286296

287297
BUNDLED WITH
288298
2.2.33

0 commit comments

Comments
 (0)