Wins Lin
2013-Apr-15 21:38 UTC
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? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Gintautas Å imkus
2013-Apr-15 21:48 UTC
Re: No validation_context methods in Rails API. What for are they?
private/protected methods? What r u trying to accomplish? 2013/4/16 Wins Lin <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org>> 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? > > -- > Posted via http://www.ruby-forum.com/. > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- Pagarbiai, Gintautas -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Wins Lin
2013-Apr-15 22:16 UTC
Re: No validation_context methods in Rails API. What for are they?
Gintautas S. wrote in post #1105766:> private/protected methods? What r u trying to accomplish?> -- > Pagarbiai, > GintautasI 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? -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Justin T.
2013-Apr-16 04:46 UTC
Re: No validation_context methods in Rails API. What for are they?
You could use this gem to validate email addresses: https://github.com/alexdunae/validates_email_format_of You should be able to use it without needing AR, as well. On Monday, April 15, 2013 6:16:13 PM UTC-4, Ruby-Forum.com User wrote:> > 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? > > -- > Posted via http://www.ruby-forum.com/. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/DTyaLrw3pB0J. For more options, visit https://groups.google.com/groups/opt_out.