Skip to content

Instantly share code, notes, and snippets.

@acidtib
Created August 27, 2012 15:45
Show Gist options
  • Save acidtib/3489675 to your computer and use it in GitHub Desktop.
Save acidtib/3489675 to your computer and use it in GitHub Desktop.
explore
def explore
@states = State.find(params[:id])
@towns = @states.towns.find_all
@postcards = @states.postcards.limit(1)
@towns.each do |t|
postcard = t.postcards.last
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment