README.md in koine-attributes-0.1.3 vs README.md in koine-attributes-0.1.4

- old
+ new

@@ -47,10 +47,15 @@ peson = Person.new person.name = 'John Doe' person.birtday = '2001-02-31' # Date Object can also be given person.name # => 'John Doe' - person.birtday # => #<Date 2001-02-31> + person.birthday # => #<Date 2001-02-31> + + person.attributes.to_h # => { + # name: 'John Doe', + # birthday: #<Date 2001-02-31> + # } ``` Options: ```ruby