Skip to content

Ruby 3.4.4-slim #3486

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 9 commits into
base: master
Choose a base branch
from
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:2.6.3-slim
FROM ruby:3.4.4-slim
LABEL maintainer Travis CI GmbH <[email protected]>

# packages required for bundle install
Expand Down
12 changes: 6 additions & 6 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,32 @@ source 'https://rubygems.org'
ruby '2.6.3'

gem 'faraday'
gem 'html-proofer', '~> 3.0'
gem 'html-proofer', '~> 3.19', '>= 3.19.3'
gem 'jekyll', '>=3.1.6'
gem 'jekyll-paginate'
gem 'jekyll-redirect-from'
gem 'puma'
gem 'puma', '>= 5.6.9'
gem 'pry', group: :test
gem 'rack', '~> 1.0'
gem 'rack-jekyll'
gem 'rack-ssl-enforcer'
gem 'rake'
gem 'rdiscount', '>=2.2.0.1'
gem 'rubocop', group: :test
gem 'rubocop', '>= 0.87.0', group: :test


# All of this is for Slate / middleman

gem "middleman", '~> 3.0'
gem "middleman", "~> 4.1", ">= 4.1.8"

# For syntax highlighting
gem "middleman-syntax"
gem "middleman-syntax", ">= 3.3.0"

# Plugin for middleman to generate GitHub pages
gem 'middleman-gh-pages'

# Live-reloading plugin
gem "middleman-livereload"
gem "middleman-livereload", ">= 3.4.7"

# Needed for Slate / middleman
gem 'redcarpet'
Expand Down