You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I was stumped by this exception when trying to compile a dynamic js string.
undefined method `success?' for nil:NilClass
Turns out it was status.success? failed at line 42 of compiler.rb. The status is nil. The compile process itself succeed. When I change the condition to !status || status.success?, the result shows up.
My setup is Windows 7, Ruby 1.8.7 and Rails 3. I am not familiar with commands and threads (shame). Is this a bug or just my own problem?
The text was updated successfully, but these errors were encountered:
I was stumped by this exception when trying to compile a dynamic js string.
Turns out it was
status.success?
failed at line 42 of compiler.rb. Thestatus
is nil. The compile process itself succeed. When I change the condition to!status || status.success?
, the result shows up.My setup is Windows 7, Ruby 1.8.7 and Rails 3. I am not familiar with commands and threads (shame). Is this a bug or just my own problem?
The text was updated successfully, but these errors were encountered: