Skip to content

Commit

Permalink
Move to Ruby 3
Browse files Browse the repository at this point in the history
These changes are mostly copied over from the website, though
with minor adaptations for this repo having different dependencies
than that one.
  • Loading branch information
PeterJCLaw committed May 21, 2024
1 parent bbc6dea commit d5bd43b
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 36 deletions.
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.7.3
3.3.0
10 changes: 7 additions & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@ source 'https://rubygems.org'

gem 'rake'
gem 'kramdown'
# Pin to the version used on GitHub Pages
gem 'jekyll', 3.9
# jekyll depends on kramdown-parser-gfm, but fails to declare it
gem 'kramdown-parser-gfm'
gem 'jekyll', '~> 3'

# For testing output
gem 'html-proofer'
gem 'html-proofer', '~> 3'

# Avoid polling on windows
gem 'wdm', '>= 0.1.0'

# For local Ruby 3 support; works around https://github.com/github/pages-gem/issues/752
gem "webrick", "~> 1.7"
71 changes: 42 additions & 29 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,34 +1,38 @@
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
addressable (2.8.6)
public_suffix (>= 2.0.2, < 6.0)
colorator (1.1.0)
concurrent-ruby (1.1.8)
em-websocket (0.5.2)
concurrent-ruby (1.2.3)
em-websocket (0.5.3)
eventmachine (>= 0.12.9)
http_parser.rb (~> 0.6.0)
ethon (0.15.0)
http_parser.rb (~> 0)
ethon (0.16.0)
ffi (>= 1.15.0)
eventmachine (1.2.7)
ffi (1.15.5)
eventmachine (1.2.7-x64-mingw32)
eventmachine (1.2.7-x86-mingw32)
ffi (1.16.3)
ffi (1.16.3-x64-mingw32)
ffi (1.16.3-x86-mingw32)
forwardable-extended (2.6.0)
html-proofer (3.19.2)
html-proofer (3.19.4)
addressable (~> 2.3)
mercenary (~> 0.3)
nokogumbo (~> 2.0)
parallel (~> 1.3)
nokogiri (~> 1.13)
parallel (~> 1.10)
rainbow (~> 3.0)
typhoeus (~> 1.3)
yell (~> 2.0)
http_parser.rb (0.6.0)
i18n (0.9.5)
http_parser.rb (0.8.0)
i18n (1.14.4)
concurrent-ruby (~> 1.0)
jekyll (3.9.0)
jekyll (3.9.5)
addressable (~> 2.4)
colorator (~> 1.0)
em-websocket (~> 0.5)
i18n (~> 0.7)
i18n (>= 0.7, < 2)
jekyll-sass-converter (~> 1.0)
jekyll-watch (~> 2.0)
kramdown (>= 1.17, < 3)
Expand All @@ -41,51 +45,60 @@ GEM
sass (~> 3.4)
jekyll-watch (2.2.1)
listen (~> 3.0)
kramdown (2.3.1)
kramdown (2.4.0)
rexml
liquid (4.0.3)
listen (3.7.1)
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
liquid (4.0.4)
listen (3.9.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
mercenary (0.3.6)
mini_portile2 (2.8.5)
nokogiri (1.15.6)
mini_portile2 (~> 2.8.2)
racc (~> 1.4)
nokogumbo (2.0.5)
nokogiri (~> 1.8, >= 1.8.4)
parallel (1.21.0)
nokogiri (1.15.6-x64-mingw32)
racc (~> 1.4)
nokogiri (1.15.6-x86-mingw32)
racc (~> 1.4)
parallel (1.24.0)
pathutil (0.16.2)
forwardable-extended (~> 2.6)
public_suffix (4.0.6)
public_suffix (5.0.4)
racc (1.7.3)
rainbow (3.0.0)
rainbow (3.1.1)
rake (12.3.3)
rb-fsevent (0.11.0)
rb-fsevent (0.11.2)
rb-inotify (0.10.1)
ffi (~> 1.0)
rexml (3.2.5)
rouge (3.26.0)
rexml (3.2.6)
rouge (3.30.0)
safe_yaml (1.0.5)
sass (3.7.4)
sass-listen (~> 4.0.0)
sass-listen (4.0.0)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
typhoeus (1.4.0)
typhoeus (1.4.1)
ethon (>= 0.9.0)
wdm (0.1.1)
webrick (1.7.0)
yell (2.2.2)

PLATFORMS
ruby
x64-mingw32
x86-mingw32

DEPENDENCIES
html-proofer
jekyll (= 3.9)
html-proofer (~> 3)
jekyll (~> 3)
kramdown
kramdown-parser-gfm
rake
wdm (>= 0.1.0)
webrick (~> 1.7)

BUNDLED WITH
2.1.4
2.3.6
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,16 @@ SRComp-HTTP instance separately.

1. [Clone this repo][clone-repo]

1. [Install Ruby][install-ruby]
1. [Install Ruby 3][install-ruby]

1. Install Bundler (2.x) and Rake
See `.ruby_version` for the precise version, though 3.3 or above will
probably be fine.

``` shell
1. Install Bundler (2.3 or above) and Rake.

Depending on how you have installed Ruby these may already be installed.

``` console
$ gem install bundler rake
```

Expand Down

0 comments on commit d5bd43b

Please sign in to comment.