Skip to content

Commit 39962e4

Browse files
babayomiclaude
andcommitted
Fix Jekyll configuration for GitHub Pages compatibility
- Simplified Gemfile to use github-pages gem - Updated to use remote_theme instead of theme - Removed problematic exclude patterns - Should resolve build failures 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 2ad10a8 commit 39962e4

File tree

3 files changed

+12
-43
lines changed

3 files changed

+12
-43
lines changed

.claude/settings.local.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
"Bash(bundle install:*)",
77
"Bash(git init:*)",
88
"Bash(git remote add:*)",
9-
"Bash(git add:*)"
9+
"Bash(git add:*)",
10+
"Bash(git branch:*)",
11+
"Bash(git push:*)",
12+
"Bash(curl:*)",
13+
"Bash(git commit:*)"
1014
],
1115
"additionalDirectories": [
1216
"/Users/abayomi/Documents"

Gemfile

Lines changed: 4 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -2,37 +2,8 @@
22

33
source "https://rubygems.org"
44

5-
# Jekyll core
6-
gem "jekyll", "~> 3.9.0"
5+
# GitHub Pages gem includes Jekyll and common plugins
6+
gem "github-pages", group: :jekyll_plugins
77

8-
# Theme
9-
gem "just-the-docs", "~> 0.6.0"
10-
11-
# Plugins for enhanced functionality
12-
group :jekyll_plugins do
13-
gem "jekyll-feed", "~> 0.12"
14-
gem "jekyll-sitemap", "~> 1.4"
15-
gem "jekyll-seo-tag", "~> 2.6"
16-
gem "jekyll-redirect-from", "~> 0.16"
17-
gem "jekyll-paginate", "~> 1.1"
18-
gem "jekyll-gist", "~> 1.5"
19-
gem "jekyll-include-cache", "~> 0.2"
20-
end
21-
22-
# Performance and compatibility
23-
gem "kramdown-parser-gfm", "~> 1.1"
24-
gem "webrick", "~> 1.7" # Required for Jekyll 4.0+ on Ruby 3.0+
25-
26-
# Development tools (only for local development)
27-
group :development do
28-
gem "bundler", ">= 1.17"
29-
end
30-
31-
# Windows and JRuby compatibility
32-
platforms :mingw, :x64_mingw, :mswin, :jruby do
33-
gem "tzinfo", "~> 1.2"
34-
gem "tzinfo-data"
35-
end
36-
37-
# Performance booster for watching directories on Windows
38-
gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
8+
# Theme - using remote theme for GitHub Pages compatibility
9+
gem "just-the-docs"

_config.yml

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ plugins:
1818
- jekyll-feed
1919
- jekyll-sitemap
2020
- jekyll-seo-tag
21-
- jekyll-redirect-from
21+
- jekyll-remote-theme
2222

23-
# Theme Configuration
24-
theme: just-the-docs
23+
# Theme Configuration - using remote theme for GitHub Pages
2524
remote_theme: just-the-docs/just-the-docs
2625

2726
# Just-the-docs Theme Settings
@@ -102,11 +101,6 @@ exclude:
102101
- Gemfile
103102
- Gemfile.lock
104103
- node_modules/
105-
- vendor/bundle/
106-
- vendor/cache/
107-
- vendor/gems/
108-
- vendor/ruby/
109-
- README.md
110-
- CLAUDE.md
104+
- vendor/
111105
- "*.txt"
112106
- comprehensive_prd.md

0 commit comments

Comments
 (0)