Skip to content

Instantly share code, notes, and snippets.

@GregPK
Created August 9, 2013 10:05
Show Gist options
  • Save GregPK/6192580 to your computer and use it in GitHub Desktop.
Save GregPK/6192580 to your computer and use it in GitHub Desktop.
Just a simple rails helper for getting a CSS class in the form `tag{n}`.
def tag_class(tag,max_number=15)
srand(tag.id)
tag_id = rand(1..max_number)
"tag#{tag_id}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment