2023-08-08 13:54:59 -07:00
|
|
|
# typed: strict
|
2022-12-19 18:15:51 -05:00
|
|
|
# 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
|