Tagged Questions
0
votes
0answers
8 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
1answer
44 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 && ...
0
votes
1answer
33 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
28 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
38 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
93 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
56 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
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 ...
1
vote
1answer
110 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
44 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
53 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
30 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 ...
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 ...
1
vote
1answer
49 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
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
55 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
49 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
0answers
48 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.
...
4
votes
2answers
397 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
119 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
2answers
321 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
72 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
...
0
votes
1answer
51 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 ...
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
234 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 ...
0
votes
1answer
57 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 ...
0
votes
1answer
117 views
Rails ArgumentError in OrdersController#new validation
Second question on here, I'd really like to solve this one myself but I'm totally flumaxed as I just don't know where to start to debug it.
So here is my error in the browser (which occurs when I go ...
0
votes
2answers
53 views
Method Defined in Controller Throwing NoMethodError
My application has Dwellings and Roomies. I am building some authentication into the Dwelling view - only users who are roomies of the current dwelling should be able to view certain data - all other ...
0
votes
2answers
221 views
undefined method `model_name' for NilClass:Class Rails [closed]
I've got problem with NoMethodError in Rails.
MODELS:
issue:
class Issue < ActiveRecord::Base
attr_accessible :description, :estimate, :label, :status, :title, :project_id
belongs_to ...
0
votes
2answers
86 views
Rails associations with self joining class
I doing a rails project where I'm using a self joining one-to-many setup.
I have a class called User, which has many customers.
Each customer has many order lists, like this:
class User < ...
0
votes
1answer
71 views
Ruby on Rails NoMethodError in CharactersController#new
Directly after generating a scaffold I am getting a NoMethodError when trying to create some new test dummy data.
I am new to rails and so I am probably doing something simple wrong but it doesn't ...
2
votes
1answer
421 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
...
...
1
vote
1answer
116 views
user class authenticate NoMethodError
In a sample login program , I have two classes. Sessions and user. The user table has two field name, password. The sessions methods continue to get 'NoMethodError' when calling the authenticate ...
0
votes
2answers
254 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 ...
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 ...
0
votes
1answer
59 views
Rails undefined method `*' for nil:NilClass in view
I am having problems building a new Rails app.
When trying to run @invoice.total in the view, I get this error:
undefined method `*' for nil:NilClass
However, running @invoice.total works in the ...
0
votes
0answers
398 views
Paperclip: NoMethodError in ProductsController#create (undefined method `match' for nil:NilClass)
I've looked all over the internet trying to find why this error is happening to me. I'm trying to upload a file using paperclip gem in Rails 3.2.7 and is giving me this error:
undefined method ...
0
votes
1answer
286 views
NoMethodError in Controller#new
Hi everyone Im working in my app and I run into this error
NoMethodError in GasStationsController#new
undefined method `gas_stations' for #<Class:0x12cf77510>
Rails.root: ...
1
vote
1answer
408 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 ...
0
votes
2answers
119 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? && ...
5
votes
2answers
416 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
155 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 ...
0
votes
0answers
198 views
Why can't I access method from controller?
first of all I'm creating a rails app and I'm trying to separate some logic in my model and putting it a separate class for handling this logic.
So I created a new file in my app/models directory ...
0
votes
1answer
92 views
NoMethodError when attempting to display user information on a Profile Page
I'm trying to make a simple profile page using a registration/login system with devise. I can register, login, and redirect to a profile page no problem, however, when I attempt to insert variables ...
0
votes
1answer
328 views
Ruby on rails scaffold error in _form.html.erb
This CURD generated by scaffold method using following command
rails g scaffold contact fullname:string surname:string email:string mobile:string note:text
when i go to localhost:3003/contacts/new ...
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 ...




