banditKing
banditKing

Reputation: 9579

Does rails 3.2.1 have the has_secure_password method?

I would like to know if rails 3.2.1 has the method has_secure_password?

Where can I go to find this out? Google gives me generic links.

Upvotes: 0

Views: 339

Answers (1)

Peter Brown
Peter Brown

Reputation: 51697

Yup https://github.com/rails/rails/blob/v3.2.1/activemodel/lib/active_model/secure_password.rb#L34

In the future, you can use api.rubyonrails.org to find the method. Then click "Show on Github". Then select the tag you want from the Github tag menu for Rails.

Upvotes: 2

Related Questions