Skip to content

Instantly share code, notes, and snippets.

@fltiago
Created September 27, 2013 15:38
Show Gist options
  • Save fltiago/6730591 to your computer and use it in GitHub Desktop.
Save fltiago/6730591 to your computer and use it in GitHub Desktop.
class UsersController < ApplicationController
def index
@users = User.all
end
end
# /views/users/index.html.erb
<%= users.each do |user| %>
<%= user.name %>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment