9 lines
215 B
Ruby
9 lines
215 B
Ruby
# typed: strict
|
|
# frozen_string_literal: true
|
|
|
|
module FormulaCellarChecks
|
|
def valid_library_extension?(filename)
|
|
generic_valid_library_extension?(filename) || filename.basename.to_s.include?(".so.")
|
|
end
|
|
end
|