Method: ActiveSupport::HashWithIndifferentAccess#delete
- Defined in:
- activesupport/lib/active_support/hash_with_indifferent_access.rb
#delete(key) ⇒ Object
Removes the specified key from the hash.
303 304 305 |
# File 'activesupport/lib/active_support/hash_with_indifferent_access.rb', line 303 def delete(key) super(convert_key(key)) end |