Skip to content

Instantly share code, notes, and snippets.

@rociiu
Created December 21, 2010 00:03
Show Gist options
  • Save rociiu/749261 to your computer and use it in GitHub Desktop.
Save rociiu/749261 to your computer and use it in GitHub Desktop.
class String
# "Opportunity Type" => "opportunity_type"
# "Sub-segments" => "sub_segments"
def unhumanize
words = self.dup
words.downcase!.gsub!(/[ +|-]/, '_')
words
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment