Skip to content

Commit b1c0df9

Browse files
graycreateclaude
andcommitted
fix: add Fastlane UI import to changelog_helper
Fixes NameError: uninitialized constant ChangelogHelper::UI by importing FastlaneCore::UI module. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent dc80de8 commit b1c0df9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

fastlane/changelog_helper.rb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
# changelog_helper.rb
22
# Helper module to extract changelog entries from CHANGELOG.md
33

4+
require 'fastlane_core/ui/ui'
5+
46
module ChangelogHelper
7+
# Import Fastlane's UI for logging
8+
UI = FastlaneCore::UI unless Fastlane.const_defined?(:UI)
59
# Extract changelog for a specific version from CHANGELOG.md
610
# @param version [String] The version to extract (e.g., "1.1.1")
711
# @return [String] The changelog content for the specified version

0 commit comments

Comments
 (0)