Skip to content

Instantly share code, notes, and snippets.

@mclaughj
Last active December 11, 2015 19:58
Show Gist options
  • Save mclaughj/4651658 to your computer and use it in GitHub Desktop.
Save mclaughj/4651658 to your computer and use it in GitHub Desktop.
def go route, env = {}, type = :html
# ...
elsif route.first == 'tag' && route.size == 2
if (data = archives('', route[1])).nil?
http 404
else
context[data, :tag]
end
# ...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment