aboutsummaryrefslogtreecommitdiffstats
path: root/activemodel/lib/active_model/secure_password.rb
diff options
context:
space:
mode:
authorGaurish Sharma <contact@gaurishsharma.com>2013-08-28 22:51:16 +0530
committerGaurish Sharma <contact@gaurishsharma.com>2013-08-29 01:27:18 +0530
commit65f1766a0865fd24aee3254535eb8577b5aed84e (patch)
treeabdf11faca281e68815dc9c3f60c5476ee266257 /activemodel/lib/active_model/secure_password.rb
parentef9b29351b0ed6d81d3e0292321eb67bbc200817 (diff)
downloadrails-65f1766a0865fd24aee3254535eb8577b5aed84e.tar.gz
rails-65f1766a0865fd24aee3254535eb8577b5aed84e.tar.bz2
rails-65f1766a0865fd24aee3254535eb8577b5aed84e.zip
Add :nodoc: to ActiveModel::SecurePassword.min_cost
[ci skip]
Diffstat (limited to 'activemodel/lib/active_model/secure_password.rb')
-rw-r--r--activemodel/lib/active_model/secure_password.rb4
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