diff options
author | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-28 13:03:33 -0700 |
---|---|---|
committer | Rafael Mendonça França <rafaelmfranca@gmail.com> | 2013-08-28 13:03:33 -0700 |
commit | b0a8931b11ac1343445b1b12e270d030042bf05b (patch) | |
tree | abdf11faca281e68815dc9c3f60c5476ee266257 /activemodel | |
parent | 6524a85fa5d34622c74de43ee1264f55d19910ff (diff) | |
parent | 65f1766a0865fd24aee3254535eb8577b5aed84e (diff) | |
download | rails-b0a8931b11ac1343445b1b12e270d030042bf05b.tar.gz rails-b0a8931b11ac1343445b1b12e270d030042bf05b.tar.bz2 rails-b0a8931b11ac1343445b1b12e270d030042bf05b.zip |
Merge pull request #12058 from gaurish/secure-pass-doc
Add nodoc to ActiveModel::SecurePassword.min_cost
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 |