class Attio::Attribute

def prepare_options(options)

def prepare_options(options)
  return nil unless options
  case options
  when Array
    options.map do |opt|
      case opt
      when String
        {title: opt}
      when Hash
        opt
      else
        {title: opt.to_s}
      end
    end
  else
    options
  end
end