2020-10-10 14:16:11 +02:00
|
|
|
# typed: true
|
2019-04-19 15:38:03 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-07-23 23:04:49 +02:00
|
|
|
require "unpack_strategy"
|
2017-04-21 13:43:13 +02:00
|
|
|
|
2018-09-06 08:29:14 +02:00
|
|
|
module Cask
|
2016-09-24 13:52:43 +02:00
|
|
|
class DSL
|
2020-08-24 23:09:43 +02:00
|
|
|
# Class corresponding to the `container` stanza.
|
2016-09-24 13:52:43 +02:00
|
|
|
class Container
|
2023-01-10 22:16:45 -08:00
|
|
|
attr_accessor :nested, :type
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2023-01-10 22:16:45 -08:00
|
|
|
def initialize(nested: nil, type: nil)
|
|
|
|
@nested = nested
|
|
|
|
@type = type
|
2017-04-21 13:43:13 +02:00
|
|
|
|
|
|
|
return if type.nil?
|
2018-07-23 23:04:49 +02:00
|
|
|
return unless UnpackStrategy.from_type(type).nil?
|
2018-09-17 02:45:00 +02:00
|
|
|
|
2017-04-21 13:43:13 +02:00
|
|
|
raise "invalid container type: #{type.inspect}"
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2023-01-10 22:16:45 -08:00
|
|
|
def pairs
|
|
|
|
instance_variables.to_h { |ivar| [ivar[1..].to_sym, instance_variable_get(ivar)] }.compact
|
|
|
|
end
|
|
|
|
|
2016-09-24 13:52:43 +02:00
|
|
|
def to_yaml
|
2023-01-10 22:16:45 -08:00
|
|
|
pairs.to_yaml
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
|
2024-04-26 14:04:55 +02:00
|
|
|
sig { returns(String) }
|
|
|
|
def to_s = pairs.inspect
|
2016-09-24 13:52:43 +02:00
|
|
|
end
|
2016-08-18 22:11:42 +03:00
|
|
|
end
|
|
|
|
end
|