The argument-error tag has no wiki summary.
4
votes
1answer
546 views
How does one use delayed_job to make an Rails 3.0 ActionMailer run asynchronously? Encountering ArgumentErrors
I'm trying to delay a notification email to be sent to users upon signing up to my app. The emails are sent using an ActionMailer which I call InitMailer. The way I am trying to delay the jobs is ...
4
votes
1answer
305 views
Flash Error #1063 Argument count mismatch
I'm getting the following strange error:
ArgumentError: Error #1063: Argument count mismatch on Away3DLiteSprite(). Expected 4, got 0.
1
vote
1answer
473 views
JRuby: how to call a Java variadic function without optional arguments
I have a function with a signature similar to String.format(String, Object...).
I want to call this function from JRuby without the last parameters (since it is optional), but my code throws an ...
1
vote
1answer
242 views
Rails active record object causes error when i try to access any attribute
I have code like:
@notifications = Notification.find_all_by_user_id(@user.id, :order=>'deliver_by DESC', :conditions=>"deliver_by >= '#{Date.today.to_s(:db)}'")
logger.info ...
0
votes
0answers
58 views
Capybara click_button gives argument error (0 for 2)
I am using Cucumber and have a step definition that does a sign up.
In that setup I have:
click_button('Sign in')
When it tries to execute this line I get:
And enter my user details and sign up ...
0
votes
2answers
145 views
ArgumentError, wrong number of arguments (2 for 0) in create action, works on Heroku but not on local server
I recently had a RoR application developed for me by a third party and now I'm on my own to add future features that I want. It works on Heroku, but when I try to run it on localhost:3000, I get an ...
0
votes
2answers
121 views
Builder throwing “wrong number of arguments” error when passed a block in Ruby 1.9
I'm trying to upgrade a Ruby 1.8 app to 1.9 and hit a bit of a roadblock here. In Ruby 1.8.7, I can pass on a block to Builder 3.0.0 and it gets called as expected:
1.8.7 :003 > @builder = ...
0
votes
3answers
548 views
ArgumentError, wrong number of arguments
I'm getting the error
ArgumentError in PagesController#home, wrong number of arguments (0 for 1)
but I don't know why. I have a Users model from Devise, and a Dplan model, where dplan belongs_to ...