Tagged Questions
0
votes
0answers
14 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:
...
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
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 ...
1
vote
1answer
98 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
2answers
268 views
ROR — NoMethodError in Carts#show — Private Method error
I am currently following the Agile Web Development book (Rails 3) and have been stuck with a Private Method error. After hours of research I have not been able to find a solution.
The following is ...
0
votes
1answer
60 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
402 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
490 views
Paperclip: NoMethodError (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:
NoMethodError in ...
0
votes
1answer
76 views
NoMethodError in NameController#new
I've run into an error in my application, to explain the context: a user has several cars, each car can make a tanking therefore my TankingLogsController is the following
class TankingLogsController ...
1
vote
1answer
413 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
1answer
195 views
Rails 3 — for loop giving an Undefined method 'each'
Rails -v 3.2.3
Im trying to display links inside of a table in my views
I keep getting
NoMethodError in Links#submissions , views/links/submissions.html.erb where line #10 raised: undefined method ...
0
votes
0answers
201 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 ...
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 ...
0
votes
2answers
364 views
Undefined method 'User message path" in Rails 3 project
I am trying to add a link to my Posts>Index page which lets people send direct message (using Simple Private Messaging) to the creator of the Post.
Currently I have a link to /messages/new to do ...
2
votes
1answer
157 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' ...
1
vote
1answer
281 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 / ...
0
votes
1answer
852 views
NoMethodError in Users#show undefined method `following' for #<User:0xab068f0>
I am getting the below error for line 8. Learning from ch.11/12 of the railstutorial.org. I am using rails 3.1.3 and ruby 1.9.3 instead of what was suggested from the tutorial. I've looked around for ...
0
votes
2answers
253 views
Ruby on Rails “NoMethodError” with no information
ANSWER IN FINAL EDIT
I'm running a project using Rails 3.1.3. I only have one page web page and my application contoller looks like this:
class ApplicationController < ActionController::Base
...
0
votes
1answer
406 views
Delayed_job(2.1.4) + Rails(3.0.10) undefined method `delay'
I upgrading a rails application to rails(3.0.10) and update the gem delayed_job. I updated my migration for the table delayed_job but unfortunatly the method ".delay" doesn't work.
NoMethodError: ...
1
vote
2answers
761 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
0answers
160 views
Enabling RSpec work work with Rubymine and Rails dynamic finder methods missing
I'm trying to run a simple RSpec test inside of RubyMine on top of a rails application. I'm trying to test some generic code inside of a lib directory. The problem is that I get an exception ...
0
votes
2answers
274 views
Ruby on Rails Switching from SQlite database to Postgresql gives undefined method `to_sym' for nil:NilClass error
I'm working on a Ruby on Rails application that used the Devise authentication system.
https://github.com/plataformatec/devise
I scoured the internet for a similar problem to my own but no no avail. ...
0
votes
1answer
432 views
Devise not working after update, Tests via capybara complete without failures
I'm quite new to RoR and programmed a couple of things before discovering Test-Driven-Development. So I tried to write some tests with guard-rspec and capybara. All was fine, but I got some ...
0
votes
2answers
254 views
Why am I getting a No Method Error in my rails app?
I know that I'm a newbie at this and that I am not worthy, but could someone please explain to me why I am getting a No Method Error? Here's what I did. I generated a new migration for my database ...
3
votes
2answers
352 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]/) ? ...
0
votes
1answer
516 views
NoMethod Error when using the mail() method in a Rails 3.0.3 ActionMailer
I am trying to create a mailer class for a RoR webapp I am working on for a class. I followed the rails guides steps online, but when I try to call my ActionMailer I get a NoMethodError: undefined ...
0
votes
2answers
219 views
Rails error “NoMethodError” - Just started to use Rails
Hopefully this is a very easy problem to solve as I am just starting out with Rails.
I have one database (Products) which contains a number of product attributes including brand, colour and ...
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 ...

