Re: [Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-14 Thread Greg Donald
On Mon, Jun 14, 2010 at 9:33 AM, nb wrote: > According to http://guides.rails.info/3_0_release_notes.html, Ruby > 1.9.1 is not usable wit Rails 3. Yup.. notice the part where I then tried 1.9.2-head? >> I found on someone's blog that exact error message and it said to use >> 1.9.2-head, know iss

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-14 Thread nb
According to http://guides.rails.info/3_0_release_notes.html, Ruby 1.9.1 is not usable wit Rails 3. On Jun 9, 8:41 pm, Greg Donald wrote: > When I try rails console using Rails3 beta4 and Ruby 1.9.1-p378 I > cannot save a record: > > > rails console > > Loading development environment (Rails 3.0.

Re: [Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-13 Thread Greg Donald
On Sun, Jun 13, 2010 at 3:13 AM, ingus.skaistkalns wrote: > Found that this error happens if validation validates_presence_of is > not the last that is executed, > if it is last, than no errors are happening. I'm not even to the point of adding any validations, can't even fire up rails console wi

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-13 Thread ingus.skaistkalns
I got the same error in my model, because of validations: if "validates_presence_of :login, :full_name, :email, :password" is before "validates_uniqueness_of :login, :email", then error is raised if "validates_presence_of :login, :full_name, :email, :password" is after "validates_uniqueness_of :l

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-13 Thread ingus.skaistkalns
Found that this error happens if validation validates_presence_of is not the last that is executed, if it is last, than no errors are happening. On Jun 10, 6:07 pm, wischr wrote: > I ran into the same problem but with 1.8.7, 1.9.1, 1.9.2. If you run > your save again, it will work the second time

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-10 Thread wischr
I ran into the same problem but with 1.8.7, 1.9.1, 1.9.2. If you run your save again, it will work the second time. I am trying to go down the suggestions I just read of temporarily using ruby-mysql gem instead. On Jun 9, 11:41 pm, Greg Donald wrote: > When I try rails console using Rails3 beta4

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-10 Thread wischr
Have the exact same problem - doesn't matter 1.8.7, 1.9.1 or 1.9.2. Interestingly, in the console, invoke g.save a second time and it works. All subsequent AR calls seem fine after that. I ran into the problem when attempting to seed (create). You at RailsConf by the way? (I am @wischr). On Jun 9,

[Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-10 Thread wischr
I just tried 1.8.7 - still fails for me (consistently). I am headed over to the AR presentation, so I might ask if it's a known issue in the Q&A. On Jun 10, 11:15 am, Greg Donald wrote: > On Thu, Jun 10, 2010 at 10:42 AM, wischr wrote: > > Have the exact same problem - doesn't matter 1.8.7, 1.9.

Re: [Rails] Re: Rails3 beta4 + Ruby 1.9

2010-06-10 Thread Greg Donald
On Thu, Jun 10, 2010 at 10:42 AM, wischr wrote: > Have the exact same problem - doesn't matter 1.8.7, 1.9.1 or 1.9.2. > Interestingly, in the console, invoke g.save a second time and it > works. All subsequent AR calls seem fine after that. I ran into the > problem when attempting to seed (create)