Skip to content

Commit b57cda3

Browse files
committed
Bump nokogiri + set Ruby to 3.3.7
1 parent 29e9a8f commit b57cda3

5 files changed

Lines changed: 14 additions & 229 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Icon
1010

1111

1212
# Thumbnails
13+
.DS_Store
1314
._*
1415

1516
# Files that might appear in the root of a volume
@@ -31,4 +32,5 @@ Temporary Items
3132
# VIM
3233
.swp
3334

34-
.DS_Store
35+
# NOTE(ssaunier): the Dockerfile builds from Gemfile directly
36+
Gemflile.lock

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.5
1+
3.3.7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3.5
1+
FROM ruby:3.3.7
22
LABEL maintainer="seb@lewagon.org"
33

44
# make the "en_US.UTF-8" locale so ruby will be utf-8 enabled by default

Gemfile

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,16 @@ git_source(:github) do |repo_name|
55
"https://github.com/#{repo_name}.git"
66
end
77

8-
ruby "3.3.5"
8+
ruby "3.3.7"
99

10-
gem "awesome_print", "~> 1.8", require: false
11-
gem "faker", "~> 3.4"
12-
gem "nokogiri", "~> 1.13"
13-
gem "pry-byebug", "~> 3.7"
14-
gem "rest-client", "~> 2.0"
10+
gem "awesome_print", "~> 1.9", require: false
11+
gem "faker", "~> 3.5"
12+
gem "nokogiri", "~> 1.18"
13+
gem "pry-byebug", "~> 3.10"
14+
gem "rest-client", "~> 2.1"
1515
gem "rspec-rails", "~> 3.8"
16-
gem "rubocop", "~> 1.64"
16+
gem "rubocop", "~> 1.74"
1717
gem "sinatra", "~> 2.2", require: false
1818
gem "sinatra-contrib", "~> 2.2", require: false
19-
gem "sqlite3", '~> 1.7.3'
20-
gem 'activerecord', '~> 7.1.3.2'
21-
19+
gem "sqlite3", "~> 1.7.3"
20+
gem "activerecord", "~> 7.1"

Gemfile.lock

Lines changed: 0 additions & 216 deletions
This file was deleted.

0 commit comments

Comments
 (0)