|
|
@ -17,12 +17,12 @@ struct ConfigPreferences
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
result = [] of String
|
|
|
|
result = [] of String
|
|
|
|
node.nodes.each do
|
|
|
|
node.nodes.each do |item|
|
|
|
|
unless node.is_a?(YAML::Nodes::Scalar)
|
|
|
|
unless item.is_a?(YAML::Nodes::Scalar)
|
|
|
|
node.raise "Expected scalar, not #{node.class}"
|
|
|
|
node.raise "Expected scalar, not #{item.class}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
result << node.value
|
|
|
|
result << item.value
|
|
|
|
end
|
|
|
|
end
|
|
|
|
rescue ex
|
|
|
|
rescue ex
|
|
|
|
if node.is_a?(YAML::Nodes::Scalar)
|
|
|
|
if node.is_a?(YAML::Nodes::Scalar)
|
|
|
|