On Sun, Nov 7, 2010 at 7:51 PM, Ben Porterfield <[email protected]>wrote:

> I've just started a new rails project (3.0.1, ruby 1.9.2 on Mac OS X),
> and have a few parts of it built out. I've just created new
> controller/views using rails g scaffold_controller Lesson, and then
> added a route to routes.rb with "resources :lessons"
>
> Now, when i go to /lessons, Webrick fails with "Illegal instruction"
>
> The controller function getting hit is lessons#index, and looks like
> this:
>
> # GET /lessons
> # GET /lessons.xml
> def index
>  @lessons = Lesson.all
>
>  respond_to do |format|
>    format.html index.html.erb
>    format.xml { render :xml => @lessons }
>  end
>

I think you need to comment out index.html.erb... should not be there, or if
you want to specify it, it should be a string or something like { render
:action => "index" }:

 respond_to do |format|
   format.html  #index.html.erb
   format.xml { render :xml => @lessons }
 end


> end
>
> If i comment out the respond_to section, the index page renders fine
> with no crashing. I have no idea what I could have done to make it begin
> to crash with respond_to? This is the first time i've used "resources"
> in my app. What can I do to even start to debug this issue? Thanks!
>
> --
> Posted via http://www.ruby-forum.com/.
>
> --
> You received this message because you are subscribed to the Google Groups
> "Ruby on Rails: Talk" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected]<rubyonrails-talk%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/rubyonrails-talk?hl=en.
>
>

-- 
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en.

Reply via email to