Hi all, Saving without callbacks is not working in rails 3.1. please tell me alternatives available...... Thanks, Kingston -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 17 January 2012 11:22, Kingston.s <jenorish-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi all, > > > Saving without callbacks is not working in rails 3.1.Yes it is. I presume you mean that you cannot make it work. Tell us what you have tried and what the result was. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Jan 17, 6:53 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 17 January 2012 11:22, Kingston.s <jenor...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hi all, > > > Saving without callbacks is not working in rails 3.1. > > Yes it is. > I presume you mean that you cannot make it work. Tell us what you > have tried and what the result was. > > ColinHi Colin, i am using send(:create_without_callbacks).. i got the following error "undefined method `generated_methods?''" kingston -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 18 January 2012 04:42, Kingston.s <jenorish-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> On Jan 17, 6:53 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> On 17 January 2012 11:22, Kingston.s <jenor...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> > Hi all, >> >> > Saving without callbacks is not working in rails 3.1. >> >> Yes it is. >> I presume you mean that you cannot make it work. Tell us what you >> have tried and what the result was. >> >> Colin > > Hi Colin, > > i am using send(:create_without_callbacks)..OK, I understand. That method has been removed in rails 3. The best way I think to achieve the effect is to us :if or :unless on the callback spec. That puts the decision on whether to apply the callback into the model where generally it should be. See the Rails Guide on ActiveRecord callbacks to see how to use them. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.