A Ruby exception that is raised when a method is called on an object which doesn't respond to that method.
1
vote
1answer
24 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
12 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
46 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 ...
1
vote
1answer
20 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
17 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
26 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
38 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
39 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
0answers
29 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
41 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 ...
3
votes
3answers
100 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 ...
1
vote
3answers
76 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
62 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
27 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 ...
0
votes
2answers
33 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 ...
0
votes
1answer
26 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 ...
1
vote
1answer
111 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
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 ...
0
votes
3answers
55 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
34 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
73 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
31 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
0answers
38 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
70 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
2answers
70 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:
...
0
votes
1answer
160 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 ...
1
vote
1answer
50 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
311 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, ...
0
votes
0answers
65 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 ...
0
votes
1answer
33 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
57 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
51 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 ...
0
votes
2answers
84 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
0answers
49 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.
...
0
votes
1answer
73 views
NoMethodError Comments Controller - Rails 3.2 [closed]
I have two models comments and programmes. And i get this error.
My comments_conroller.rb looks like this
def create
@programmme = Programme.find(params[:programme_id])
@comment = ...
-1
votes
2answers
960 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 ...
4
votes
2answers
410 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 ...
1
vote
1answer
123 views
NoMethodError running cucumber tests
I'm getting a fail whenever I try to run this cucumber test on a rails app-
The 'And I click' step definition is working elsewhere, it fails every time here though!
And I can't find anywhere I've used ...
1
vote
1answer
91 views
rspec custom matcher is not working - getting NoMethodError
I am trying to do exercise 2 in chapter 8 of Michael Hartl's RailsTutorial.org. I have added the following to the spec/support/utilities.rb file:
RSpec::Matchers.define :have_title do |message|
...
1
vote
2answers
335 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
1answer
73 views
nested form no method error
I have a nested model form giving me a no method error and I can't seem to figure it out. Any help would be greatly appreciated. I'm creating a location and a user in the same form.
The error
...
1
vote
1answer
96 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 ...
0
votes
1answer
52 views
nomethoderror rails layout
I'm new to rails and trying to make a link in my header to sign in/out of a profile. I'm not the issue with the following code, specifically the bolded (**) area:
<body>
<div class="navbar ...
2
votes
1answer
185 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 ...
0
votes
1answer
77 views
before_destroy definition NoMethodError
hey I'm having a little trouble with this function
class User < ActiveRecord::Base
belongs_to :group
end
class Group < ActiveRecord::Base
has_many :users
attr_accessible :name
...
1
vote
2answers
27 views
How to create a conditional based on the existence of an attribute in Rails?
I have the following code in a likes_controller and it works fine as long as a thing has an owner. If not, it breaks.
def create
@thing = Thing.find(params[:like][:liked_id])
user = ...
0
votes
1answer
237 views
NoMethodError: undefined method class_inheritable_accessor’ for PDF::Toolkit:Class`
Hi I'm trying to read a pfd in RoR 3.2.8, for that I did:
gem install pdf-toolkit
I added the gem to the Gemfile: gem "pdf-toolkit", "0.5.0"
After i did a bundle install and everything was ...
2
votes
1answer
58 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 ...
0
votes
1answer
58 views
No Method Error for strftime
I'm not sure where the error exists. The same code is working for a collaborator and I can't get this to work! Let me know what other code need to be shown, I'm not sure where the error is...in the ...
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 ...




