class Symbol
Public Instance Methods
ends_with?(str)
click to toggle source
# File lib/iron/extensions/symbol.rb, line 12 def ends_with?(str) self.to_s.ends_with?(str) end
starts_with?(str)
click to toggle source
# File lib/iron/extensions/symbol.rb, line 8 def starts_with?(str) self.to_s.starts_with?(str) end
to_dashcase()
click to toggle source
# File lib/iron/extensions/symbol.rb, line 3 def to_dashcase self.to_s.to_dashcase end