Method: StringDoc::MetaAttributes#delete

Defined in:
lib/string_doc/meta_attributes.rb

#delete(key) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



22
23
24
25
26
# File 'lib/string_doc/meta_attributes.rb', line 22

def delete(key)
  @attributes.each do |attributes|
    attributes.delete(key)
  end
end