update Ruby to 2.6.10, fix Gemfile and push Gemfile.lock

Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
CrazyMax
2022-05-13 22:07:45 +02:00
parent 90a6951346
commit 3ce39559b2
5 changed files with 89 additions and 50 deletions

View File

@@ -1,9 +1,7 @@
.dockerignore
.DS_Store .DS_Store
.git .git
.github .github
.gitignore .gitignore
.gitmodules
.idea .idea
.jekyll-metadata .jekyll-metadata
.sass-cache .sass-cache
@@ -11,9 +9,6 @@ tests
_site _site
CONTRIBUTING.md CONTRIBUTING.md
Dockerfile Dockerfile
Dockerfile.archive
docker-compose.yml docker-compose.yml
Gemfile
Gemfile.lock
_website*.json _website*.json
/vendor

2
.gitignore vendored
View File

@@ -5,5 +5,5 @@
_site/** _site/**
.sass-cache/** .sass-cache/**
CNAME CNAME
Gemfile.lock
_kbase/** _kbase/**
/vendor

View File

@@ -1 +1 @@
2.3.6 2.6.10

49
Gemfile
View File

@@ -1,43 +1,8 @@
source "https://rubygems.org" source 'https://rubygems.org'
# Update me once in a while: https://github.com/github/pages-gem/releases gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
# Please ensure, before upgrading, that this version exists as a tag in starefossen/github-pages here: gem 'wdm', '>= 0.1.0' if Gem.win_platform?
# https://hub.docker.com/r/starefossen/github-pages/tags/ gem 'jekyll'
# gem 'jekyll-redirect-from'
# Fresh install? gem 'jekyll-relative-links'
# gem 'jekyll-sitemap'
# Windows:
# Install Ruby 2.3.3 x64 and download the Development Kit for 64-bit:
# https://rubyinstaller.org/downloads/
#
# Run this to install devkit after extracting:
# ruby <path_to_devkit>/dk.rb init
# ruby <path_to_devkit>/dk.rb install
#
# then:
# gem install bundler
# bundle install
#
# Mac/Linux:
# Install Ruby 2.3.x and then:
# gem install bundler
# bundle install
#
# ---------------------
# Upgrading? Probably best to reset your environment:
#
# Remove all gems:
# gem uninstall -aIx
#
# (If Windows, do the dk.rb bits above, then go to the next step below)
# Install anew:
# gem install bundler
# bundle install
# This only affects interactive builds (local build, Netlify) and not the
# live site deploy, which uses the Dockerfiles found in the publish-tools
# branch.
gem "github-pages", "198"
gem 'wdm' if Gem.win_platform?

79
Gemfile.lock Normal file
View File

@@ -0,0 +1,79 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
colorator (1.1.0)
concurrent-ruby (1.1.10)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0)
eventmachine (1.2.7)
ffi (1.15.5)
forwardable-extended (2.6.0)
http_parser.rb (0.8.0)
i18n (1.10.0)
concurrent-ruby (~> 1.0)
jekyll (4.2.2)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 1.0)
jekyll-sass-converter (~> 2.0)
jekyll-watch (~> 2.0)
kramdown (~> 2.3)
kramdown-parser-gfm (~> 1.0)
liquid (~> 4.0)
mercenary (~> 0.4.0)
pathutil (~> 0.9)
rouge (~> 3.0)
safe_yaml (~> 1.0)
terminal-table (~> 2.0)
jekyll-redirect-from (0.16.0)
jekyll (>= 3.3, < 5.0)
jekyll-relative-links (0.6.1)
jekyll (>= 3.3, < 5.0)
jekyll-sass-converter (2.2.0)
sassc (> 2.0.1, < 3.0)
jekyll-sitemap (1.4.0)
jekyll (>= 3.7, < 5.0)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.3)
listen (3.7.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.4.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.7)
rb-fsevent (0.11.1)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.28.0)
safe_yaml (1.0.5)
sassc (2.4.0)
ffi (~> 1.9)
terminal-table (2.0.0)
unicode-display_width (~> 1.1, >= 1.1.1)
unicode-display_width (1.8.0)
PLATFORMS
aarch64-linux
arm-linux
x86_64-linux
DEPENDENCIES
jekyll
jekyll-redirect-from
jekyll-relative-links
jekyll-sitemap
tzinfo-data
BUNDLED WITH
2.3.13