# File lib/scrivener.rb, line 37
  def initialize(atts)
    atts.each do |key, val|
      accessor = "#{key}="

      if respond_to?(accessor)
        send(accessor, val)
      end
    end
  end