A Ruby exception that is raised when a method is called on an object which doesn't respond to that method.

learn more… | top users | synonyms

0
votes
0answers
15 views

Heroku + Rails 3.2 + PostgreSQL = NoMethodError: undefined method `result' for #<NoMethodError:..>

NoMethodError: undefined method `result' for #< NoMethodError: ...> Stack trace refers to this place: def current_income return @current_income if defined? @current_income if ...
0
votes
0answers
27 views

Carmen-Rails: Get states for a given country code

In following this blog post by Eric Lubow about implementing country and state selection with Carmen-Rails, I am unable to get any subnational regions to materialize when the 'states' method of the ...
1
vote
0answers
44 views

NoMethodError in Microposts#create

im having some trouble with my Ruby on Rails app. I'm new at this so i imagine the problem isn't too complicated Basically I am trying to create a discussion board. the page /discussions has many ...
0
votes
1answer
34 views

NoMethodError in MicropostsController#create

I've run into an issue with my Ruby on Rails app. I've a page called /discussion which contains discussions that users can comment on with microposts. The goal here is to have a form below each ...
1
vote
2answers
46 views

NoMethodError, calling attribute in sinatra

I have a sinatra app that I am writing. I am trying to write a page to display the individual patterns stored in a database. Using datamapper I have created a class: require 'dm-core' require ...
0
votes
1answer
42 views

Ruby no Method Error

I'm just learning Ruby and having a hard time with this error, I read some posts which all said to define the method like this... def self.methodname I did this but to no avail. here is my code ...
0
votes
0answers
10 views

Rails refuses to forget code, leaving ssl and initialize method errors

I am noticing a pattern of rails acting as if a line of code is still written once it has been deleted, and I think it may have something to do with changing its defaults too much. I have two ...
0
votes
0answers
20 views

jquerymobile using Select menus with Ruby on Rails error

I have two models Promotions and Goods when i create a promotion must associate it with a good, so in the view i used <div class="field"> <%= f.label :good%><br /> <%= ...
0
votes
2answers
54 views

Rails - NoMethodError

I am receiving NoMethodErrors when my DeltaSynWorker runs. This happens in an application that was built as a revision of a currently working application. I am not the original programmer, and I am ...
1
vote
1answer
37 views

rails authenticate nomethoderror nil for nilClass

So, I've been having issues with the 'authenticate' method coming back in RSpec as a NoMethodError. Below is my code. I'm borrowing heavily from Michael Hartl's Rails Tutorial as I am just learning ...
0
votes
0answers
21 views

rails generate broken with NoMethodError

I am having some troubles with my Rails environment - running a command like: $ rails generate scaffold_controller model_name results in the following trace: ...
0
votes
1answer
70 views

Ruby on rails NoMethodError in controller after create an association

I have two models User and Promotion, an user can create has_many promotion and an promotion belong to user so : promotion.rb class Promotion < ActiveRecord::Base belongs_to :user belongs_to ...
0
votes
1answer
91 views

NoMethodError in SessionsController#create using Omniauth Facebook authentication railscast 360

Hi there I am currently following railscast 360 on adding Facebook authentication to my webapp. It was all going well until I started getting this error: "NoMethodError in ...
0
votes
1answer
34 views

Delayed_Job NoMethodError when using Nginx

I'm having trouble implementing the Delayed_Job_Active_Record gem in my Production Environment with Nginx. The user submits a 'Contact Us' form, the relevant controller action is called by Nginx and ...
1
vote
1answer
28 views

I am using twitter bootstrap and my <img> tag is not working! Wont display

I've been trying to set up my login but keep reaching an error page that says: "NoMethodError in Static_pages#welcome" "undefined method `id' for :user:Symbol" So when I paste the following into ...
0
votes
1answer
30 views

How do I use user_helper method globally throughout the app views?

I finished chapter 8 on Michael Hartl's Rails Tutorial, so I have the app set up to sign users up & sign in and out. What I am trying to do user a User Helper method inside the ...
0
votes
1answer
22 views

Rails 3 helper methods not available in controllers even after explicitly including them

Fist of all I'm newbie to rails. I have this in SessionsController: def method sign_in 'user' end And this in SessionsHelper: def sing_in(user) ...... end So Googling and reading some ...
0
votes
2answers
28 views

NoMethodError: undefined method `[]' in rails 3

Here is my SessionsController class SessionsController < ApplicationController def new end def create user = User.find_by_email(params[:session][:email].downcase) if user && ...
1
vote
1answer
62 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 ...
0
votes
1answer
54 views

NoMethodError in Songs#genre . Undefined method `each' for nil:NilClass

I'm struggling with something in my Ruby on Rails application. This is My model: class Song < ActiveRecord::Base attr_accessible :duration, :title, :track_URL, :genre, :image_url end I have ...
0
votes
2answers
271 views

NoMethodError in UsersController#create

I'm getting stuck on an error I'm getting when signing up a new user in Michael Hart's Ruby on Rails Tutorial. I'm new to rails but I've been searching for hours and can't seem to find anything to ...
0
votes
0answers
31 views

NoMethodError in partial

I am getting a strange error when I try to access some data in a partial. I have a model holding data on networks. Each networks has messages, each message has comments. In my network I render the ...
0
votes
0answers
72 views

Balanced Payments - NoMethodError - Storing Credit Card - balanced_accout_uri

For my application, I am trying to integrate the tokenizing of credit card information for my users. I am referencing the docs here: See here. When I Submit the Credit Card Form, I currently get the ...
0
votes
0answers
132 views

Ruby Tutorial Screencast with Hartl, lesson 9, Failure/Error: @user = FactoryGirl(:user) NoMethodError:

I've been following the Hartl screencast Ruby tutorial and have hit a snag with Lesson 9. I have Factory Girl 4.2.0 installed and am running the latest version of Ruby and Rails. If I comment out the ...
3
votes
3answers
291 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 ...
0
votes
2answers
128 views

NoMethodError in Static_pages#home

I'm getting a no method error in my Static_pages#home: undefined method `exists?' for Registry The little code I'm using it in is: <% if user_signed_in? && ...
1
vote
3answers
117 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 ...
0
votes
2answers
36 views

Ruby on Rails : NoMethodError

I am a beginner in ROR .I faced a problem that when I test code on one book. I follow it stage by stage, but the error show up... NoMethodError in CaculatorController#calculate undefined method ...
1
vote
2answers
101 views

Rails Tutorial 3.2 Chapter 8 error: NoMethodError in SessionsController#create

I'm going through the rails tutorial and my login page is throwing an exception after exercise 8.1.5 when I click the login button with no email or pw entered: ...
1
vote
1answer
132 views

No Method Error editing Shopify metafield data with ruby on rails via a form

As part of a customisation I'm doing for a Shopify site, I'm trying to write a tool that allows only a specific metafield to be edited. On the index page, I'll be listing various collections, ...
1
vote
1answer
52 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 ...
0
votes
3answers
71 views

NoMethodError in <myController>#<myMethod> undefined method `<myModuleMethod>' for <myModule>

orry for the basics, but I'm having a hell of a time getting a very basic flow to work: 1) Define module with a method to save a url to a var (or return it) 2) Call that method in a controller to ...
0
votes
1answer
40 views

Accessing Hash Keys with user inputted variables, NoMethodError

I get this error message when trying to access a hash with user inputted variables: "undefined method `index' for nil:NilClass (NoMethodError)" This should illustrate my problem a little better... ...
0
votes
2answers
105 views

Ruby. Crack gem. — in `<main>': undefined method `[]' for nil:NilClass (NoMethodError) --

Dear stackoverflow community, Beginner's question: Why do I get the following error? scraper_sample_2.rb:7:in `<main>': undefined method `[]' for nil:NilClass (NoMethodError) >Exit code: 1 ...
0
votes
1answer
34 views

Mongo + RoR Models. Stuck with NoMethodError

I have a problem with NoMethodError in one of my models. In the log file, we have: NoMethodError (undefined method `length=' for #<Book:0x000000083866b8>): 2013-03-28T10:25:19+00:00 ...
0
votes
1answer
243 views

Undefined method `remember_token=' 'find_by_remember_token' - Chapter 8 Ruby on Rails Tutorial

I am trying to complete the Ruby on Rails Tutorial by Michael Hartl and I am stuck on Chapter 8. I am getting the same two errors when I run my tests: NoMethodError: undefined method ...
0
votes
4answers
859 views

Agile Web Development w/ Rails (4th e) Cart Issue

I'm working through Agile Web Dev w/ Rails book (4th ed) and I'm totally stuck... I'm running Rails 3.2.3 on Mac OSX. Im on task D-3: Adding a Button.... it started with the test:functionals not ...
0
votes
0answers
50 views

NoMethodError: undefined method `comment' when getting EC2 instance tags from aws-sdk

I'm seeing intermittent errors NoMethodError: undefined method `comment' for #<AWS::Core::XML::SaxHandlers::Nokogiri:0xb4eb5f0> when accessing EC2 instance tags like so: instance_name = ...
2
votes
1answer
220 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
83 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 ...
1
vote
1answer
53 views

NoMethodError when creating new Rails app

I have this error when I'm creating a new Rails folder (with rails new my_app) : http://cl.ly/image/3S071x1l0w3J -> NoMethodError: private method 'open' called for Gem::Package:Class An error ...
0
votes
1answer
391 views

Rails 3 undefined method nil:NilClass has_many :through when attempting create

I am encountering a problem when trying to .build a new appointment. But first a look at my Model(s) class Patient < ActiveRecord::Base attr_accessible :address1, :address2, :city, :comment, ...
4
votes
2answers
431 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 ...
0
votes
2answers
100 views

NoMethodError in SessionsController#create

I've been following along with Michael Hartl's Tutorial, and for those who are familiar with it, I'm on Lesson 10 - Updating Users. So far I've built an app that should allow users to sign up, sign ...
0
votes
1answer
34 views

Rails NoMethodError in Players#new

I just used generate scaffold to make this setup and I immediately got this error. For some reason it's trying to evaluate 'user' as a method in line 20 and only user. It went by name fine, but ...
0
votes
1answer
75 views

NoMethodError in Rails

I am getting NoMethodError in ProjectsController#edit undefined method `projects' for #<User:0x28356d8>`app/controllers/projects_controller.rb:154:in `correct_user' The params are: ...
0
votes
1answer
53 views

Ruby on Rails NoMethodError on call to object.each

I have show action in the Exhibitor model. I want to display a list of Meetings for which the Exhibitor is a Sponsor. Exhibitor model: class Exhibitor < ActiveRecord::Base attr_accessible ...
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 ...
0
votes
0answers
54 views

Rails queue_classic strange error “NoMethodError: undefined method” on production envoronment

I have a method in rails model which is expected to be called via queue_classic (https://github.com/ryandotsmith/queue_classic). In development environment everything is working without problems. ...
-1
votes
2answers
1k views

Uncaught TypeError: Object #<Object> has no method 'fancybox' in Wordpress site

I have the error Uncaught TypeError: Object # has no method 'fancybox' in my JS console on this website http://www.e-fashion-awards.com/ As you can see, I include jquery.fancybox.js after ...

1 2 3 4