Search Results

1
vote

Sort tag cloud alphabetically in acts_as_taggable_on_steroids

Here is what I am doing on my site to sort my tags by name: <% tag_cloud Post.tag_counts.sort { |x, y| x.name <=> y.name }, %w(x-small small normal large x-large) do |tag, …