2022-12-19 18:15:51 -05:00

15 lines
455 B
Ruby

# typed: true
# frozen_string_literal: true
module Homebrew
module Livecheck
# The {Constants} module provides constants that are intended to be used
# in `livecheck` block values (e.g. `url`, `regex`).
module Constants
# A placeholder string used in resource `livecheck` block URLs that will
# be replaced with the latest version from the main formula check.
LATEST_VERSION = "<FORMULA_LATEST_VERSION>"
end
end
end