Guest User

Untitled

a guest
Apr 21st, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. # GET /posts
  2. # GET /posts.xml
  3. def index
  4. @posts = Post.find(:all)
  5.  
  6. raise @post.inspect.to_s
  7.  
  8. respond_to do |format|
  9. format.html # index.html.erb
  10. format.xml { render :xml => @posts }
  11. end
  12. end
Add Comment
Please, Sign In to add comment