diff options
author | Gaurish Sharma <contact@gaurishsharma.com> | 2013-08-28 22:51:16 +0530 |
---|---|---|
committer | Gaurish Sharma <contact@gaurishsharma.com> | 2013-08-29 01:27:18 +0530 |
commit | 65f1766a0865fd24aee3254535eb8577b5aed84e (patch) | |
tree | abdf11faca281e68815dc9c3f60c5476ee266257 /activemodel | |
parent | ef9b29351b0ed6d81d3e0292321eb67bbc200817 (diff) | |
download | rails-65f1766a0865fd24aee3254535eb8577b5aed84e.tar.gz rails-65f1766a0865fd24aee3254535eb8577b5aed84e.tar.bz2 rails-65f1766a0865fd24aee3254535eb8577b5aed84e.zip |
Add :nodoc: to ActiveModel::SecurePassword.min_cost
[ci skip]
Diffstat (limited to 'activemodel')
-rw-r--r-- | activemodel/lib/active_model/secure_password.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/secure_password.rb b/activemodel/lib/active_model/secure_password.rb index cc9483e67b..8b9ac97bbb 100644 --- a/activemodel/lib/active_model/secure_password.rb +++ b/activemodel/lib/active_model/secure_password.rb @@ -2,7 +2,9 @@ module ActiveModel module SecurePassword extend ActiveSupport::Concern - class << self; attr_accessor :min_cost; end + class << self + attr_accessor :min_cost # :nodoc: + end self.min_cost = false module ClassMethods |