Skip to content

Commit 2a1eb02

Browse files
committed
Updating ruby version
1 parent aafd278 commit 2a1eb02

File tree

4 files changed

+77
-78
lines changed

4 files changed

+77
-78
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# [Choice] Ruby version: 2, 2.7, 2.6, 2.5
2-
ARG VARIANT=2
2+
ARG VARIANT=2.7
33
FROM mcr.microsoft.com/vscode/devcontainers/ruby:${VARIANT}
44

55
# Install Rails

Gemfile

+1-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 '2.7.2'
4+
ruby '2.7.3'
55

66
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
77
gem 'rails', '~> 6.1.1'

Gemfile.lock

+74-76
Original file line numberDiff line numberDiff line change
@@ -1,60 +1,60 @@
11
GEM
22
remote: https://rubygems.org/
33
specs:
4-
actioncable (6.1.1)
5-
actionpack (= 6.1.1)
6-
activesupport (= 6.1.1)
4+
actioncable (6.1.3.2)
5+
actionpack (= 6.1.3.2)
6+
activesupport (= 6.1.3.2)
77
nio4r (~> 2.0)
88
websocket-driver (>= 0.6.1)
9-
actionmailbox (6.1.1)
10-
actionpack (= 6.1.1)
11-
activejob (= 6.1.1)
12-
activerecord (= 6.1.1)
13-
activestorage (= 6.1.1)
14-
activesupport (= 6.1.1)
9+
actionmailbox (6.1.3.2)
10+
actionpack (= 6.1.3.2)
11+
activejob (= 6.1.3.2)
12+
activerecord (= 6.1.3.2)
13+
activestorage (= 6.1.3.2)
14+
activesupport (= 6.1.3.2)
1515
mail (>= 2.7.1)
16-
actionmailer (6.1.1)
17-
actionpack (= 6.1.1)
18-
actionview (= 6.1.1)
19-
activejob (= 6.1.1)
20-
activesupport (= 6.1.1)
16+
actionmailer (6.1.3.2)
17+
actionpack (= 6.1.3.2)
18+
actionview (= 6.1.3.2)
19+
activejob (= 6.1.3.2)
20+
activesupport (= 6.1.3.2)
2121
mail (~> 2.5, >= 2.5.4)
2222
rails-dom-testing (~> 2.0)
23-
actionpack (6.1.1)
24-
actionview (= 6.1.1)
25-
activesupport (= 6.1.1)
23+
actionpack (6.1.3.2)
24+
actionview (= 6.1.3.2)
25+
activesupport (= 6.1.3.2)
2626
rack (~> 2.0, >= 2.0.9)
2727
rack-test (>= 0.6.3)
2828
rails-dom-testing (~> 2.0)
2929
rails-html-sanitizer (~> 1.0, >= 1.2.0)
30-
actiontext (6.1.1)
31-
actionpack (= 6.1.1)
32-
activerecord (= 6.1.1)
33-
activestorage (= 6.1.1)
34-
activesupport (= 6.1.1)
30+
actiontext (6.1.3.2)
31+
actionpack (= 6.1.3.2)
32+
activerecord (= 6.1.3.2)
33+
activestorage (= 6.1.3.2)
34+
activesupport (= 6.1.3.2)
3535
nokogiri (>= 1.8.5)
36-
actionview (6.1.1)
37-
activesupport (= 6.1.1)
36+
actionview (6.1.3.2)
37+
activesupport (= 6.1.3.2)
3838
builder (~> 3.1)
3939
erubi (~> 1.4)
4040
rails-dom-testing (~> 2.0)
4141
rails-html-sanitizer (~> 1.1, >= 1.2.0)
42-
activejob (6.1.1)
43-
activesupport (= 6.1.1)
42+
activejob (6.1.3.2)
43+
activesupport (= 6.1.3.2)
4444
globalid (>= 0.3.6)
45-
activemodel (6.1.1)
46-
activesupport (= 6.1.1)
47-
activerecord (6.1.1)
48-
activemodel (= 6.1.1)
49-
activesupport (= 6.1.1)
50-
activestorage (6.1.1)
51-
actionpack (= 6.1.1)
52-
activejob (= 6.1.1)
53-
activerecord (= 6.1.1)
54-
activesupport (= 6.1.1)
55-
marcel (~> 0.3.1)
56-
mimemagic (~> 0.3.2)
57-
activesupport (6.1.1)
45+
activemodel (6.1.3.2)
46+
activesupport (= 6.1.3.2)
47+
activerecord (6.1.3.2)
48+
activemodel (= 6.1.3.2)
49+
activesupport (= 6.1.3.2)
50+
activestorage (6.1.3.2)
51+
actionpack (= 6.1.3.2)
52+
activejob (= 6.1.3.2)
53+
activerecord (= 6.1.3.2)
54+
activesupport (= 6.1.3.2)
55+
marcel (~> 1.0.0)
56+
mini_mime (~> 1.0.2)
57+
activesupport (6.1.3.2)
5858
concurrent-ruby (~> 1.0, >= 1.0.2)
5959
i18n (>= 1.6, < 2)
6060
minitest (>= 5.1)
@@ -63,7 +63,7 @@ GEM
6363
addressable (2.7.0)
6464
public_suffix (>= 2.0.2, < 5.0)
6565
bindex (0.8.1)
66-
bootsnap (1.7.0)
66+
bootsnap (1.7.5)
6767
msgpack (~> 1.0)
6868
builder (3.2.4)
6969
byebug (11.1.3)
@@ -80,31 +80,29 @@ GEM
8080
concurrent-ruby (1.1.8)
8181
crass (1.0.6)
8282
erubi (1.10.0)
83-
ffi (1.14.2)
83+
ffi (1.15.0)
8484
globalid (0.4.2)
8585
activesupport (>= 4.2.0)
86-
i18n (1.8.8)
86+
i18n (1.8.10)
8787
concurrent-ruby (~> 1.0)
8888
jbuilder (2.11.2)
8989
activesupport (>= 5.0.0)
90-
listen (3.4.1)
90+
listen (3.5.1)
9191
rb-fsevent (~> 0.10, >= 0.10.3)
9292
rb-inotify (~> 0.9, >= 0.9.10)
93-
loofah (2.9.0)
93+
loofah (2.9.1)
9494
crass (~> 1.0.2)
9595
nokogiri (>= 1.5.9)
9696
mail (2.7.1)
9797
mini_mime (>= 0.1.1)
98-
marcel (0.3.3)
99-
mimemagic (~> 0.3.2)
98+
marcel (1.0.1)
10099
method_source (1.0.0)
101-
mimemagic (0.3.5)
102-
mini_mime (1.0.2)
103-
mini_portile2 (2.5.0)
104-
minitest (5.14.3)
100+
mini_mime (1.0.3)
101+
mini_portile2 (2.5.1)
102+
minitest (5.14.4)
105103
msgpack (1.4.2)
106-
nio4r (2.5.4)
107-
nokogiri (1.11.1)
104+
nio4r (2.5.7)
105+
nokogiri (1.11.3)
108106
mini_portile2 (~> 2.5.0)
109107
racc (~> 1.4)
110108
pg (1.2.3)
@@ -113,47 +111,47 @@ GEM
113111
cliver (~> 0.3.1)
114112
websocket-driver (>= 0.2.0)
115113
public_suffix (4.0.6)
116-
puma (5.2.0)
114+
puma (5.3.1)
117115
nio4r (~> 2.0)
118116
racc (1.5.2)
119117
rack (2.2.3)
120-
rack-mini-profiler (2.3.1)
118+
rack-mini-profiler (2.3.2)
121119
rack (>= 1.2.0)
122120
rack-proxy (0.6.5)
123121
rack
124122
rack-test (1.1.0)
125123
rack (>= 1.0, < 3)
126-
rails (6.1.1)
127-
actioncable (= 6.1.1)
128-
actionmailbox (= 6.1.1)
129-
actionmailer (= 6.1.1)
130-
actionpack (= 6.1.1)
131-
actiontext (= 6.1.1)
132-
actionview (= 6.1.1)
133-
activejob (= 6.1.1)
134-
activemodel (= 6.1.1)
135-
activerecord (= 6.1.1)
136-
activestorage (= 6.1.1)
137-
activesupport (= 6.1.1)
124+
rails (6.1.3.2)
125+
actioncable (= 6.1.3.2)
126+
actionmailbox (= 6.1.3.2)
127+
actionmailer (= 6.1.3.2)
128+
actionpack (= 6.1.3.2)
129+
actiontext (= 6.1.3.2)
130+
actionview (= 6.1.3.2)
131+
activejob (= 6.1.3.2)
132+
activemodel (= 6.1.3.2)
133+
activerecord (= 6.1.3.2)
134+
activestorage (= 6.1.3.2)
135+
activesupport (= 6.1.3.2)
138136
bundler (>= 1.15.0)
139-
railties (= 6.1.1)
137+
railties (= 6.1.3.2)
140138
sprockets-rails (>= 2.0.0)
141139
rails-dom-testing (2.0.3)
142140
activesupport (>= 4.2.0)
143141
nokogiri (>= 1.6)
144142
rails-html-sanitizer (1.3.0)
145143
loofah (~> 2.3)
146-
railties (6.1.1)
147-
actionpack (= 6.1.1)
148-
activesupport (= 6.1.1)
144+
railties (6.1.3.2)
145+
actionpack (= 6.1.3.2)
146+
activesupport (= 6.1.3.2)
149147
method_source
150148
rake (>= 0.8.7)
151149
thor (~> 1.0)
152150
rake (13.0.3)
153-
rb-fsevent (0.10.4)
151+
rb-fsevent (0.11.0)
154152
rb-inotify (0.10.1)
155153
ffi (~> 1.0)
156-
regexp_parser (2.0.3)
154+
regexp_parser (2.1.1)
157155
rubyzip (2.3.0)
158156
sass-rails (6.0.0)
159157
sassc-rails (~> 2.1, >= 2.1.1)
@@ -168,7 +166,7 @@ GEM
168166
selenium-webdriver (3.142.7)
169167
childprocess (>= 0.5, < 4.0)
170168
rubyzip (>= 1.2.2)
171-
semantic_range (2.3.1)
169+
semantic_range (3.0.0)
172170
spring (2.1.1)
173171
sprockets (4.0.2)
174172
concurrent-ruby (~> 1.0)
@@ -189,11 +187,11 @@ GEM
189187
activemodel (>= 6.0.0)
190188
bindex (>= 0.4.0)
191189
railties (>= 6.0.0)
192-
webdrivers (4.5.0)
190+
webdrivers (4.6.0)
193191
nokogiri (~> 1.6)
194192
rubyzip (>= 1.3.0)
195193
selenium-webdriver (>= 3.0, < 4.0)
196-
webpacker (5.2.1)
194+
webpacker (5.3.0)
197195
activesupport (>= 5.2)
198196
rack-proxy (>= 0.6.1)
199197
railties (>= 5.2)
@@ -229,7 +227,7 @@ DEPENDENCIES
229227
webpacker (~> 5.0)
230228

231229
RUBY VERSION
232-
ruby 2.7.2p137
230+
ruby 2.7.3p183
233231

234232
BUNDLED WITH
235233
2.1.4

db/schema.rb

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)