Guest User

Untitled

a guest
Jul 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. class String
  2.  
  3. # "Opportunity Type" => "opportunity_type"
  4. # "Sub-segments" => "sub_segments"
  5. def unhumanize
  6. words = self.dup
  7. words.downcase!.gsub!(/[ +|-]/, '_')
  8. words
  9. end
  10.  
  11. end
Add Comment
Please, Sign In to add comment