rails--rails/activemodel/lib
Markus Doits 9bd186a0e8
clear secure password cache if password is set to `nil`
```rb
# before:
user.password = 'something'
user.password = nil

user.password # => 'something'

# now:
user.password = 'something'
user.password = nil

user.password # => nil
```
2021-10-10 11:54:35 +02:00
..
active_model clear secure password cache if password is set to `nil` 2021-10-10 11:54:35 +02:00
active_model.rb Introduce ActiveModel::API 2021-09-15 18:24:47 +02:00