Skip to content

Instantly share code, notes, and snippets.

@rchrand
Created September 24, 2013 21:20
Show Gist options
  • Save rchrand/6691431 to your computer and use it in GitHub Desktop.
Save rchrand/6691431 to your computer and use it in GitHub Desktop.
Rails problems
<h1>Welcome to INDEX! </h1>
<% @user.each do |m| %>
<p>Email: <%= m.email %></p>
<br />
<% end %>
Authapp::Application.routes.draw do
resources :users
mount Refinery::Core::Engine, :at => '/'
end
class MembersController < ApplicationController
def index
@member = Member.all
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment