Skip to content

Commit 3b32a14

Browse files
committed
trying to pin problematic gems to known working versions.
Next step though, is to downgrade ruby too. AI gave me these versions by reading release notes and known issues. amazing.
1 parent fde9439 commit 3b32a14

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

Gemfile

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ group :jekyll_plugins do
88
end
99

1010
# Pinning problematic gems to compatible versions
11-
gem 'commonmarker', '~> 0.23.9'
12-
gem 'unf_ext', '~> 0.0.8.1'
13-
gem 'eventmachine', '~> 1.2.6'
11+
gem "commonmarker", "~> 0.23.8"
12+
gem "unf_ext", "~> 0.0.7.7"
13+
gem "eventmachine", "~> 1.2.5"
14+
gem "http_parser.rb", "~> 0.6.0"
15+
gem "racc", "~> 1.5.2"
16+
17+
gem "github-pages", "232" # or whatever version you're using

netlify.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,5 @@
66
command = "bundle install && bundle exec jekyll build"
77
publish = "_site"
88

9-
[build.processing]
10-
skip_processing = true
11-
12-
[build.lifecycle]
13-
onPreBuild = "echo 'onPreBuild lifecycle event started' && uname -a && gcc --version && sudo apt-get update && sudo apt-get install -y build-essential"
14-
159
[[plugins]]
1610
package = "@netlify/plugin-ruby-bundler"

0 commit comments

Comments
 (0)