Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions VERSION
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.2.4
12 changes: 8 additions & 4 deletions swiftfindrefs.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Version is managed by the VERSION file - do not edit manually
# Run the Release workflow to bump version automatically
class Swiftfindrefs < Formula
desc "SwiftFindRefs is a macOS Swift CLI that resolves a project’s DerivedData, reads Xcode’s IndexStore, and reports every file referencing a chosen symbol, with optional verbose tracing for diagnostics."
APP_VERSION = File.read(File.join(__dir__, "VERSION")).strip.freeze

desc "SwiftFindRefs is a macOS Swift CLI that resolves a project's DerivedData, reads Xcode's IndexStore, and reports every file referencing a chosen symbol, with optional verbose tracing for diagnostics."
homepage "https://github.com/michaelversus/SwiftFindRefs"
url "https://github.com/michaelversus/SwiftFindRefs.git", tag: "0.2.4"
version "0.2.4"
url "https://github.com/michaelversus/SwiftFindRefs.git", tag: APP_VERSION
version APP_VERSION

depends_on "xcode": [:build]

Expand All @@ -13,4 +17,4 @@ def install
test do
system "#{bin}/Swiftfindrefs", "list"
end
end
end