Skip to content
Merged
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
3 changes: 3 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ gem 'kramdown-parser-gfm'

# For testing output
gem 'html-proofer'

# For local Ruby 3 support; works around https://github.com/github/pages-gem/issues/752
gem "webrick", "~> 1.7"
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ GEM
rb-inotify (~> 0.9, >= 0.9.7)
typhoeus (1.4.0)
ethon (>= 0.9.0)
webrick (1.7.0)
yell (2.2.2)

PLATFORMS
Expand All @@ -86,6 +87,7 @@ DEPENDENCIES
jekyll (= 3.9)
kramdown-parser-gfm
rake
webrick (~> 1.7)

BUNDLED WITH
1.17.3
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ end

task :dependencies do
sh('bundle install --path gems')

# Fix pathutil on Ruby 3; works around https://github.com/envygeeks/pathutil/pull/5
# as suggested by https://stackoverflow.com/a/73909894/67873
pathutil_path = `bundle exec gem which pathutil`.chomp()
content = File.read(pathutil_path).gsub(', kwd', ', **kwd')
File.write(pathutil_path, content)
end

file '_sass/brand/.git' do
Expand Down