Skip to content
Open
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 .github/workflows/rspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

services:
postgres:
image: postgres:12
image: postgres:14
env:
POSTGRES_USER: sequent
POSTGRES_PASSWORD: sequent
Expand Down
35 changes: 27 additions & 8 deletions building-a-web-application/Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,16 @@ GEM
bigdecimal (3.1.8)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
database_cleaner (2.0.2)
csv (3.3.0)
database_cleaner (2.1.0)
database_cleaner-active_record (>= 2, < 3)
database_cleaner-active_record (2.2.0)
activerecord (>= 5.a)
database_cleaner-core (~> 2.0.0)
database_cleaner-core (2.0.1)
diff-lcs (1.5.1)
drb (2.2.1)
gli (2.22.0)
i18n (1.14.6)
concurrent-ruby (~> 1.0)
logger (1.6.1)
Expand All @@ -47,6 +49,8 @@ GEM
parser (3.3.5.0)
ast (~> 2.4.1)
racc
pastel (0.8.0)
tty-color (~> 0.5)
pg (1.5.8)
postgresql_cursor (0.6.9)
activerecord (>= 6.0)
Expand All @@ -57,9 +61,8 @@ GEM
rack (>= 3.0.0, < 4)
rack-session (2.0.0)
rack (>= 3.0.0)
rackup (2.1.0)
rackup (2.2.1)
rack (>= 3)
webrick (~> 1.8)
rake (13.2.1)
rspec (3.13.0)
rspec-core (~> 3.13.0)
Expand All @@ -76,17 +79,21 @@ GEM
rspec-support (3.13.1)
ruby2_keywords (0.0.5)
securerandom (0.3.1)
sequent (7.1.1)
activemodel (>= 6.0)
activerecord (>= 6.0)
sequent (8.0.1)
activemodel (>= 7.1.3)
activerecord (>= 7.1.3)
bcrypt (~> 3.1)
csv (~> 3.3)
gli (~> 2.22)
i18n
oj (~> 3)
logger (~> 1.6)
oj (~> 3.3)
parallel (~> 1.20)
parser (>= 2.6.5, < 3.4)
pg (~> 1.2)
postgresql_cursor (~> 0.6)
thread_safe (~> 0.3.6)
tty-prompt (~> 0.23.1)
tzinfo (>= 1.1)
sinatra (4.0.0)
mustermann (~> 3.0)
Expand All @@ -105,12 +112,24 @@ GEM
thread_safe (0.3.6)
tilt (2.4.0)
timeout (0.4.1)
tty-color (0.6.0)
tty-cursor (0.7.1)
tty-prompt (0.23.1)
pastel (~> 0.8)
tty-reader (~> 0.8)
tty-reader (0.9.0)
tty-cursor (~> 0.7)
tty-screen (~> 0.8)
wisper (~> 2.0)
tty-screen (0.8.2)
tzinfo (2.0.6)
concurrent-ruby (~> 1.0)
webrick (1.8.2)
webrick (1.9.1)
wisper (2.0.1)

PLATFORMS
arm64-darwin-23
arm64-darwin-24
x86_64-linux

DEPENDENCIES
Expand Down
Loading