Skip to content

Instantly share code, notes, and snippets.

@coderforhire
Created June 26, 2012 19:13
Show Gist options
  • Save coderforhire/2998133 to your computer and use it in GitHub Desktop.
Save coderforhire/2998133 to your computer and use it in GitHub Desktop.
def index
@movies = Dir.glob("public/movies/*/*")
@sports = Dir.glob("public/movies/Sports/*")
@entertainments = Dir.glob("public/movies/Entertainment/*")
respond_to do |format|
format.html # index.html.erb
format.xml { render xml: @movie }
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment