class String

Public Instance Methods

classify() click to toggle source
# File lib/helpers.rb, line 5
def classify
  self.split('_').collect!{ |w| w.capitalize }.join
end