Skip to content

Commit fbbd8f8

Browse files
davidjpeacockclaude
andcommitted
fix: commit Gemfile.lock for GitHub Actions builds
GitHub Actions requires a committed Gemfile.lock to properly install dependencies with bundler-cache. This fixes the build failure where asciidoctor was not being installed. Changes: - Remove Gemfile.lock from .gitignore - Add vendor/bundle/ to .gitignore (local gem installation) - Commit generated Gemfile.lock 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent b75d8cf commit fbbd8f8

2 files changed

Lines changed: 17 additions & 1 deletion

File tree

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
.asciidoctor/
33

44
# Ruby
5-
Gemfile.lock
65
.bundle/
6+
vendor/bundle/
77

88
# Build output
99
build/

Gemfile.lock

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
asciidoctor (2.0.26)
5+
rouge (4.6.1)
6+
7+
PLATFORMS
8+
ruby
9+
x86_64-linux-gnu
10+
11+
DEPENDENCIES
12+
asciidoctor (~> 2.0)
13+
rouge (~> 4.1)
14+
15+
BUNDLED WITH
16+
2.6.7

0 commit comments

Comments
 (0)