Users can add tags to a snippet:
class Snippet < ActiveRecord::Base # Relationships has_many :taggings has_many :tags, :through => :taggings b
A better solution has been provided by @SooDesuNe on this SO post
validates :tags, length: { minimum: 1, maximum: 6 }