36 lines
698 B
Ruby
Raw Normal View History

2017-04-21 13:43:13 +02:00
require "hbc/container"
2016-09-24 13:52:43 +02:00
module Hbc
class DSL
class Container
VALID_KEYS = Set.new [
2016-10-14 20:33:16 +02:00
:type,
:nested,
]
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
attr_accessor(*VALID_KEYS)
attr_accessor :pairs
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def initialize(pairs = {})
@pairs = pairs
pairs.each do |key, value|
raise "invalid container key: '#{key.inspect}'" unless VALID_KEYS.include?(key)
2017-04-21 13:43:13 +02:00
send(:"#{key}=", value)
2016-09-24 13:52:43 +02:00
end
2017-04-21 13:43:13 +02:00
return if type.nil?
return unless Hbc::Container.from_type(type).nil?
raise "invalid container type: #{type.inspect}"
2016-09-24 13:52:43 +02:00
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def to_yaml
@pairs.to_yaml
end
2016-08-18 22:11:42 +03:00
2016-09-24 13:52:43 +02:00
def to_s
@pairs.inspect
end
end
2016-08-18 22:11:42 +03:00
end
end