No validation_context methods in Rails API. What for are they?

There is no validation_context methods in API. But the instance has
them:
validation_context
validation_context=

What are these methods? What do they do? Where to get info about them?

private/protected methods? What r u trying to accomplish?

2013/4/16 Wins L. [email protected]


You received this message because you are subscribed to the Google G.
“Ruby on Rails: Talk” group.
To unsubscribe from this group and stop receiving emails from it, send an
email to [email protected].
To post to this group, send email to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.


Pagarbiai,
Gintautas

Gintautas S. wrote in post #1105766:

private/protected methods? What r u trying to accomplish?


Pagarbiai,
Gintautas

I want to validate data from a form - an email string and a
password string. The Rails do not have special validator classes for the
common use cases (emails, digits, ip’s, etc), (please correct me if I’m
wrong but I couldn’t find any).

But there are some validators in ActiveModel and I’m trying to
understand what they offer and whether I can use them.

I do not use Rails ActiveRecord (–skip-active-record) and yet didn’t
created any models. I’m just testing POST requests, receiving password
and email in my “create” action method. And want to validate them. Is it
possible with the validators Rails offer?

You could use this gem to validate email addresses:

You should be able to use it without needing AR, as well.