Skip to content

Instantly share code, notes, and snippets.

View bryansray's full-sized avatar

Bryan Ray bryansray

View GitHub Profile
class Groups < Application
# provides :xml, :yaml, :js
def index
@groups = Group.all
display @groups
end
def show
@group = Group.get(params[:id])