Skip to content

Commit 3a3a17a

Browse files
actoweryclaude
andcommitted
Add bundler/gem_tasks so rake build exists for the release workflow
The shared gem_release.yml workflow's Build step runs `bundle exec rake build`, but this Rakefile never defined a build task -- it only had spec/changelog. First real release attempt failed immediately: "Don't know how to build task 'build'". require 'bundler/gem_tasks' provides the standard build/install/release tasks; no new dependency needed since bundler is already required for everything. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 6537a38 commit 3a3a17a

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Rakefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
require "bundler/gem_tasks"
12
require "rspec/core/rake_task"
23

34
RSpec::Core::RakeTask.new(:spec)

0 commit comments

Comments
 (0)