/model_plugins/not_naughty/lib/not_naughty/validations/presence_validation.rb

http://ruby-sequel.googlecode.com/ · Ruby · 31 lines · 10 code · 4 blank · 17 comment · 2 complexity · 4e8890020faf915f33fd677e46c7916a MD5 · raw file

  1. module NotNaughty
  2. # == Validates presence of obj's attribute via the <tt>:blank?</tt> method.
  3. #
  4. # Unless the validation succeeds an error hash (:attribute => :message)
  5. # is added to the obj's instance of Errors.
  6. #
  7. # <b>Options:</b>
  8. # <tt>:message</tt>:: see NotNaughty::Errors for details
  9. # <tt>:if</tt>:: see NotNaughty::Validation::Condition for details
  10. # <tt>:unless</tt>:: see NotNaughty::Validation::Condition for details
  11. #
  12. # <b>Example:</b>
  13. #
  14. # obj = '' # blank? => true
  15. # def obj.errors() @errors ||= NotNauthy::Errors.new end
  16. #
  17. # PresenceValidation.new({}, :to_s).call obj, :to_s, ''
  18. # obj.errors.on(:to_s) # => ["To s is not present."]
  19. class PresenceValidation < Validation
  20. def initialize(opts, attributes) #:nodoc:
  21. __message = opts[:message] || '#{"%s".humanize} is not present.'
  22. super opts, attributes do |o, a, v|
  23. o.errors.add a, __message if v.blank?
  24. end
  25. end
  26. end
  27. end