2019-05-24 21:36:48 -03:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class SoftwareSpec
|
2019-05-26 00:17:40 -03:00
|
|
|
undef uses_from_macos
|
|
|
|
|
2019-12-19 14:36:33 +00:00
|
|
|
def uses_from_macos(deps)
|
2019-09-17 18:10:02 -04:00
|
|
|
@uses_from_macos_elements ||= []
|
2019-12-19 14:36:33 +00:00
|
|
|
@uses_from_macos_elements << deps
|
2019-05-24 21:36:48 -03:00
|
|
|
end
|
|
|
|
end
|