class TaggableString
Public Class Methods
new(str, tags={})
click to toggle source
Calls superclass method
# File lib/selectable.rb, line 90 def initialize(str, tags={}) super(str) add_tags tags unless tags.empty? end