Class: Zimbra::String

Inherits:
String
  • Object
show all
Defined in:
lib/zimbra/ext/string.rb

Class Method Summary collapse

Class Method Details

.camel_case_lower(string) ⇒ Object



5
6
7
# File 'lib/zimbra/ext/string.rb', line 5

def camel_case_lower(string)
  string.split('_').inject([]){ |buffer,e| buffer.push(buffer.empty? ? e : e.capitalize) }.join
end