Displaying 3 results from an estimated 3 matches for "cipher_neo".
Did you mean:
cipher_key
2011 Apr 16
17
Rails 3 Crashing On Windows 7
Hi guys,
I have Rails 3 running on Windows 7 with Ruby 1.9.2
Every now and again, my server crashes, and I see the following
information in the windows event log:
Faulting application name: ruby.exe, version: 1.9.2.180, time stamp:
0x4d5ee5ed
Faulting module name: msvcrt-ruby191.dll, version: 1.9.2.180, time
stamp: 0x4d5ee5ec
Exception code: 0xc0000005
Fault offset: 0x0011a00e
Faulting process
2011 Oct 26
3
Overriding number_to_human (Rails 3.0.5)
I encountered a problem today, in that the number_to_human helper has a
defect where it spits out an error when passed any number bigger than 0 and
less than 1.
eg number_to_human(0.2) gives "nil can''t be coerced into fixnum"
So, I found this patch:
https://github.com/rails/rails/commit/7c8a5f5759a0c63945d133280fb78deaa86b65b9
Now to apply it, I had to create a file:
2012 Feb 21
0
Thread safety and class methods
Hey guys,
using passenger, is it possible that there could be thread safety issues
when executing a class method on a model?
I am seeing some weird data in some of my model instances and I think it
may be to do with concurrent processing of a class method in a model.
Is this possible, that variables get shared between all threads of
execution, when you are accessing a class method?