Ruby on Rails Friday, May 17, 2013

On 17 May 2013 10:42, Amarnath Krishnan <lists@ruby-forum.com> wrote:
> I am a RoR newbie. I am getting this error when trying to migrate my 2.x
> project to 3.x project.
>
> actionpack-3.2.13/lib/action_dispatch/routing/mapper.rb:109:in
> `normalize_path': undefined method `to_sym' for nil:NilClass
> (NoMethodError)
>
> In that line i can see the following code
> options[$1.to_sym]||=/.+/?
>
> why $1.to_sym ends with NilClass error

That means that $1 is nil. Does the stack trace show which line of
your application code is causing the problem? What are you doing when
you get the error? Post the full stack trace if you can't see what
the problem is.

Did you google for how to upgrade an app to Rails 3, it is not the
easiest thing for a beginner to do?

Colin

--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe@googlegroups.com.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment