A Ruby exception that is raised when a method is called on an object which doesn't respond to that method.
19
votes
4answers
16k views
Rails 3.2 undefined method `key?' for nil:NilClass
For some reason I started to get this error after switching to Rails 3.2. I guess it has something to do with acl9 plugin, which I tried reinstalling, but nothing changed.
I moved the plugins to ...
4
votes
5answers
4k views
Rails + CarrierWave: NoMethodError: undefined method `name' for nil:NilClass
I am using CarrierWave with Rails 3.1. I am getting the following error message when I submit the form (trying to upload an image):
Error Message:
ActiveRecord::StatementInvalid in ...
1
vote
4answers
551 views
MacRuby, error when using Sequel
I have just installed Sequel using the command sudo macgem install sequel. It tells me sequel-3.18.0 was successfully installed.
When I fire up xcode, and start a new MacRuby application, it sets up ...
5
votes
2answers
420 views
Rails 3.2.3 namespaced controllers being overridden by global controllers with same name
When the global application controller is loaded first, the namespaced application controller does not load when loading pages within that namespace. The application controller looks like this:
class ...
1
vote
3answers
2k views
Undefined method `stringify_keys' in Messages Controller
I am getting the following error when I try to submit a form (the form shows up when 1 user wants to message another user)
NoMethodError in MessagesController#create
undefined method ...
1
vote
3answers
1k views
Ruby: Private method called for 3:Fixnum
I am trying to learn the nuances of this simple function but am not sure what I need to do to fix this NoMethodError. How do I make 'split' public rather than private? Will that fix the problem?
Here ...
