mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00

This came up in the AGM and has bothered me for years: let's actually split out `software_spec.rb` into one file per class, as is more typical in Ruby. This will make these classes easier to find.
10 lines
204 B
Ruby
10 lines
204 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
class BottleSpecification
|
|
sig { params(tag: Utils::Bottles::Tag).returns(T::Boolean) }
|
|
def skip_relocation?(tag: Utils::Bottles.tag)
|
|
false
|
|
end
|
|
end
|