I''m using the Cache-Money gem on this app, and I''m getting this weird error whenever I try to create a new object. Rails 2.3.5 ruby 1.8.7 (2008-08-11 patchlevel 72) [x86_64-linux] NoMethodError (undefined method `<=>'' for #<Listing:0x2aaaae156e08>): This happens even in the console when I try to create a new Listing object and save it.>> l = Listing.new >> l.name = "test" >> l.saveNoMethodError: undefined method `<=>'' for #<Listing:0x2b9595d76350> Has anyone ever seen this before? Have any ideas of where I should look? Thanks, ~Jeremy -- 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 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 Tue, Mar 30, 2010 at 11:13 PM, Jeremy Woertink <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> NoMethodError (undefined method `<=>'' for #<Listing:0x2aaaae156e08>): > > This happens even in the console when I try to create a new Listing > object and save it. > >>> l = Listing.new >>> l.name = "test" >>> l.save > NoMethodError: undefined method `<=>'' for #<Listing:0x2b9595d76350>Something''s trying to compare 2 Listing objects, which don''t have any such comparison method, apparently.>> a = Object.new=> #<Object:0x1016b0498>>> b = Object.new=> #<Object:0x1016ac848>>> a <=> bNoMethodError: undefined method `<=>'' for #<Object:0x1016b0498> from (irb):22>>Unlike, say:>> Integer.respond_to?("<=>")=> true>> 4 <=> 5=> -1>> 5 <=> 4=> 1 So you need to find where that comparison is being made -- since it''s on save possibly some validation? HTH, -- Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org twitter: @hassan -- 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.
Hassan Schroeder wrote:> On Tue, Mar 30, 2010 at 11:13 PM, Jeremy Woertink <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> > wrote: > >> NoMethodError (undefined method `<=>'' for #<Listing:0x2aaaae156e08>): >> >> This happens even in the console when I try to create a new Listing >> object and save it. >> >>>> l = Listing.new >>>> l.name = "test" >>>> l.save >> NoMethodError: undefined method `<=>'' for #<Listing:0x2b9595d76350> > > Something''s trying to compare 2 Listing objects, which don''t have any > such comparison method, apparently. > >>> a = Object.new > => #<Object:0x1016b0498> >>> b = Object.new > => #<Object:0x1016ac848> >>> a <=> b > NoMethodError: undefined method `<=>'' for #<Object:0x1016b0498> > from (irb):22 >>> > > Unlike, say: > >>> Integer.respond_to?("<=>") > => true >>> 4 <=> 5 > => -1 >>> 5 <=> 4 > => 1 > > So you need to find where that comparison is being made -- since it''s > on save possibly some validation? > > HTH, > -- > Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > twitter: @hassanYeah, that much I''m certain of. The only thing I don''t know is maybe if cache-money does something with that when trying to save an object and throwing it into cache. This all works perfectly fine on my local machine, just not on the production server. So I figure it''s some gem that only does certain things in production. I''m using Geokit too, so if anyone knows of any issue with either of these gems that might cause something like this, please let me know. Thanks for the help. ~Jeremy -- 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 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 31 March 2010 16:33, Jeremy Woertink <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hassan Schroeder wrote: >> On Tue, Mar 30, 2010 at 11:13 PM, Jeremy Woertink <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> >> wrote: >> >>> NoMethodError (undefined method `<=>'' for #<Listing:0x2aaaae156e08>): >>> >>> This happens even in the console when I try to create a new Listing >>> object and save it. >>> >>>>> l = Listing.new >>>>> l.name = "test" >>>>> l.save >>> NoMethodError: undefined method `<=>'' for #<Listing:0x2b9595d76350> >> >> Something''s trying to compare 2 Listing objects, which don''t have any >> such comparison method, apparently. >> >>>> a = Object.new >> => #<Object:0x1016b0498> >>>> b = Object.new >> => #<Object:0x1016ac848> >>>> a <=> b >> NoMethodError: undefined method `<=>'' for #<Object:0x1016b0498> >> from (irb):22 >>>> >> >> Unlike, say: >> >>>> Integer.respond_to?("<=>") >> => true >>>> 4 <=> 5 >> => -1 >>>> 5 <=> 4 >> => 1 >> >> So you need to find where that comparison is being made -- since it''s >> on save possibly some validation? >> >> HTH, >> -- >> Hassan Schroeder ------------------------ hassan.schroeder-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org >> twitter: @hassan > > > Yeah, that much I''m certain of. The only thing I don''t know is maybe if > cache-money does something with that when trying to save an object and > throwing it into cache. > > This all works perfectly fine on my local machine, just not on the > production server. So I figure it''s some gem that only does certain > things in production. I''m using Geokit too, so if anyone knows of any > issue with either of these gems that might cause something like this, > please let me know.Can''t you see from the trace where it is failing? 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.
Colin Law wrote:> On 31 March 2010 16:33, Jeremy Woertink <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >>>>>> l.name = "test" >>>>> a <=> b >>>>> 5 <=> 4 >> >> Yeah, that much I''m certain of. The only thing I don''t know is maybe if >> cache-money does something with that when trying to save an object and >> throwing it into cache. >> >> This all works perfectly fine on my local machine, just not on the >> production server. So I figure it''s some gem that only does certain >> things in production. I''m using Geokit too, so if anyone knows of any >> issue with either of these gems that might cause something like this, >> please let me know. > > Can''t you see from the trace where it is failing? > > ColinYeah, I looked through the trace, and it was nothing but all these cache-money calls. I figured it out though, had nothing to do with cache-money. It was Geokit. I just started commenting out lines until it worked, and taking out acts_as_mappable seemed to have fixed it >.< I''m sure this is a "hack" solution because it doesn''t make sense at all. Thanks for the help guys! ~Jeremy -- 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 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.