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 ...
7
votes
1answer
5k views
Backbone - Object render has no method 'apply'
I am getting the error:
object render has no method apply for the below code.
What can be the reason ?
The html page doesnt contain any code except the link for the javascript.
what should I do ...
5
votes
2answers
417 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 ...
5
votes
2answers
716 views
Undefined method 'each' for Student:Class
I want to load a file, split its content into arrays, and have the class apply to the content.
class Student
def initialize( name, grade )
@name = name
@grade = grade
...
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 ...
4
votes
2answers
3k views
Accessing an ActionScript function via Javascript
Edit: I figured it out, see bellow.
Hey guys,
I'm trying to call a function in an action script using the ExternalInterface.addCallback API, but I can't seem to get it to work. Here's what I have:
...
4
votes
2answers
400 views
NoMethodError undefined method '-@' NoMethodError in Controller Ruby on Rails
Context:
I pulled the most recent code from the repository and tried to make sure that the changes I was about to push up were going to work with that version of the code. This is a Ruby on Rails ...
3
votes
3answers
2k views
rails try method throwing NoMethodError?
Why is try throwing an error? Doesnt that defeat the whole purpose? Maybe its just in the console?
ruby-1.9.2-p180 :101 > User.first.try(:something)
NoMethodError: undefined method `something' for ...
3
votes
2answers
349 views
Heroku Ruby NoMethodError string.capitalize
I use the following code to group locations depending on the first letter.
mobile_controller:
def index
@locations = Location.all.group_by{|l| l.name[0].capitalize.match(/[A-Z]/) ? ...
3
votes
1answer
577 views
NoMethodError in PagesController#home
I'm working through the Rails Tutorial Chapter 12, and get the following error on the Home/Main page when user is signed out (signed in is OK):
I'm a newbie to Rails so please be explicit in your ...
3
votes
1answer
952 views
read_inheritable_attribute undefined in rails 3.2.8
I get the following error message after upgrading to rails 3.2.8
NoMethodError (undefined method `read_inheritable_attribute' for AdminController:Class):
can someone explain me how to get around ...
3
votes
4answers
2k views
NoMethodError undefined method `fields' for nil:NilClass
Using: Rails 3.1.1
I am trying to create a search engine in my application that browses a large database (apprx 100 000 items) for string matches.
I am using the following:
fp = ...
3
votes
2answers
603 views
Undefined method password_changed? Error
I'm trying to set my program so that the password only is validated if it is changed (so a user can edit other information without having to put in their password).
I am currently getting an error ...
3
votes
3answers
96 views
Rails - NoMethodError undefined method
I am working on building an application (following Michael Hartl's chapter 11) where users can follow projects that are created by other users.
I created a ProjectRelationship model to hold two ...
2
votes
2answers
2k views
Gemfile error with bundle commands
I am a collaborator on the app, which I cloned, and everything runs perfectly fine on my collaborator's computer. However, when I type bundle exec or bundle install in my Heroku app's root directory, ...
2
votes
4answers
1k views
Ruby - Module :: NoMethodError
I have a module like this:
module Prober
def probe_invoke(type, data = {})
p = Probe.new({:probe_type => type.to_s,
:data => data.to_json, :probe_status => 0, :retries => ...
2
votes
1answer
153 views
NoMethodError after running successful 'create' action
I am sending a post request to my API which works fine, it creates a new record. However, after the record is created i get this error in the server log
NoMethodError (undefined method `device_url' ...
2
votes
4answers
2k views
No Method error in UsersController
I began coding in Rails several weeks ago, and I can't figure out why I have this error. I'm using Devise for log-ins and Formtastic for forms. The app was working correctly until I added the ...
2
votes
1answer
219 views
factory girl association with a children class, show nomethoderror: undefined method
file 1 . user.rb
factory :user do
name "test"
end
factory :admin_user, :parent => user do
role "admin"
end
file 2. manager.rb
factory :manager do
association :admin_user
description ...
2
votes
1answer
124 views
Why the method is not called — jRuby Rails3
I have this Java class
class Dog {
private String name;
public Dog() {
name = "Fido";
}
public String getName() {
return name;
}
}
And as mentioned here I have performed these ...
2
votes
1answer
422 views
Rails: Calling a controller method from another controller -> NoMethodError
I am using the Devise gem and have the 2 controllers:
1: controllers/admin/mailings_controller.rb:
class Admin::MailingsController < ApplicationController
def self.send_emails
...
...
2
votes
1answer
344 views
Heroku NoMethod error, remember_token=
My App works without any problem locally, but as soon as I push it to Heroku the logs show a NoMethodError. Looking through my code, I do not really see what I am missing right away. Especially, why ...
2
votes
1answer
69 views
NoMethodError (R Function “get” not found)
I'm trying to connect Ruby and R, using RSRuby.
In my application_controller I have the following:
def InitR
@r = RSRuby.instance
return @r
end
When I make:
@r = InitR()
It raises the ...
2
votes
1answer
181 views
undefined method `options=' for true:TrueClass
I made a typo in the section {} portion of my custom.css.scss file and saved. Then changed it back to how it originally was and saved again.
THEN, when I refreshed my browser I received the error ...
2
votes
1answer
57 views
undefined method `output_data' for #<EventManager:0x007fa4220320c8> (NoMethodError)
I keep getting this error:
event_manager.rb:83:in': undefined method output_data' for #<EventManager:0x007fc5018320c0> (NoMethodError)
I am following the exercise on this website:
Here is ...
2
votes
1answer
104 views
NoMethodError in rails even though correct gem is installed
In my gemfile, I have gem 'stringex'. After running bundle install, I added a path helper and am using a method that is from stringex. I should be able to use to_url directly on a string, like the ...
2
votes
1answer
456 views
Rails 3: include a field from has_many through association
My model association is as follows:
#book model
class Book < ActiveRecord::Base
has_many :recommendations, :dependent => :destroy
has_many :similars, :through => :recommendations, ...
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 ...
1
vote
1answer
95 views
NoMethodError when trying to access method defined in included module
I'm trying to access a method from a module in one of my spec helpers
I include the module in the test helper
module Support
class RestHelper
include Rest::Rest
def ...
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 ...
1
vote
1answer
37 views
Ruby Dir.exists? undefined method
I looked the Dir.exists? method up in the documentation and I believe I am using it correctly, yet at each call I am hit with this error:
undefined method `exists?' for Dir:Class (NoMethodError)
Am ...
1
vote
3answers
70 views
NoMethodError in PostsController#create
Forgive my ignorance but I am brand new not only to Ruby but programming in general. I am working through the example on edge guides at rubyonrails.org. and am receiving the following error and ...
1
vote
2answers
326 views
Rails Error: undefined method ` ' for nil:NilClass
So, since I'm fairly new to rails (and ruby), I'm still trying to understand where it all goes wrong here. I'm working on a cart in a webshop. The user gets a Session where his cart items (In this ...
1
vote
2answers
480 views
NoMethodError In Ruby
I have a bit of ruby code:
def createCal(cal)
mod = @on + @off #line creating error.
@daycount = 0
cal
end
This generates the following error: NoMethodError at /calendar ...
1
vote
1answer
173 views
Rails form keeps returning a nomethoderror
<%= form_for rating_ballot, :html => { :class => 'rating_ballot' } do |f| %>
<%= f.label("value_1", content_tag(:span, '1'), {:class=>"rating", :id=>"1"})
...
1
vote
1answer
45 views
NoMethodError in Rails for method defined in Helpers/Controller/Model
(Preface: I am 10 months into learning Rails so this could be a really rookie mistake.)
My app has Venues which have VenueCategories associated with them. In my Venue view, I want to populate some ...
1
vote
1answer
63 views
Ruby NoMethodError in Redmine from script/runner
I have some Ruby code I need to execute in the Redmine Ruby app in order to enable a module in all projects at once.
Surprisingly, ruby does access the Projects, but raises a NoMethodError when ...
1
vote
1answer
91 views
Ruby: NoMethodError, I defined the method before calling it
class AiClassGame
def calculate_cpuNum(sum)
if sum <= 79
cpuNum = 80 - sum
elsif sum <= 88
cpuNum = 89 - sum
else
cpuNum = 100 - ...
1
vote
3answers
156 views
rails render missing variables
for my rails app, my error messages are not displaying correctly. i think the reason was because on a failed validation, my controller did a redirect as opposed to a render. however, im having trouble ...
1
vote
2answers
749 views
Ruby on Rails with Sorcery reset password email has a undefined method error
Using Sorcery 0.7.4 with Rails 3.1.1 for authentication.
Everything was going well until I tried to setup password resetting.
Activation works perfectly and emails are sent, but for some reason I get ...
1
vote
2answers
1k views
Rspec error: undefined method 'change' for end.should change(Model, :count)
This is a follow on after completing the Ruby on Rails tutorial.
I've spent quite a while trying to mix and match gems to find a solution since I really have no idea how Rspec is having trouble ...
1
vote
1answer
528 views
fbgraph: undefined method `encode_json' for true:TrueClass
My code:
def start
redirect_to client.authorization.authorize_url(:redirect_uri => callback_oauth_url,
:scope => ...
1
vote
1answer
409 views
NoMethodError in SessionsController#create when calling a method in user model
I am working on rails 3 app and using the koala gem to get a connection to the facebook graph api.I am also using omniauth to autenticate users.
I get the following error:
NoMethodError in ...
1
vote
1answer
168 views
Should I move a parameter check from my controller to my model?
I have a belongs_to relationship that can be removed without destroying either the parent or the child (transfer_form). Users can eliminate the parent relationship by selecting the blank option in a ...
1
vote
1answer
294 views
NoMethodError in Posts#show
I'm following the getting started rails tutorial at: http://guides.rubyonrails.org/getting_started.html
And the code is the same as here, I don't get it.
What am I doing wrong at "comments.post" in ...
1
vote
1answer
280 views
Pusher Chat Example Error
I am trying to work with tarnfeld's PusharChat-Rails
I downloaded the file, did the usual bundle install & db:migrate.
I changed the api key in PusherChat-Rails / app / views / layouts / ...
1
vote
1answer
457 views
jRuby-1.6.5: NoMethodError undefined method '[]' for nil:NilClass
My Environment:
jRuby-1.6.5
Rails 2.3.8
Gems:
actionmailer (2.3.8)
actionpack (2.3.8)
activerecord (2.3.8)
activerecord-jdbc-adapter (1.1.1)
activerecord-jdbcpostgresql-adapter (0.8.2)
...
1
vote
2answers
139 views
Why am I getting a No Method and Nil Object error in the following line of codes?
I am trying to implement the following code in index.html.erb on rails and the following error appears on the server:
NoMethodError in Users#index
You have a nil object when you didn't expect it!
You ...
1
vote
1answer
543 views
on Ubuntu running 'gem install taps' gives ERROR: … (NoMethodError) … '<<' for #<Bundler::SpecSet:
I'm on Ubuntu 11.04 using Ruby 1.9.2 with RVM and RubyGems 1.8.5 and when I run
gem install taps
I get
ERROR: While executing gem ... (NoMethodError)
undefined method `<<' for ...




