Class: String

Inherits:
Object
  • Object
show all
Defined in:
lib/maven.rb

Instance Method Summary collapse

Instance Method Details

#java_styleObject



5
6
7
8
# File 'lib/maven.rb', line 5

def java_style
  str = split('_').map{|s| s[0..0].upcase + s[1..-1].downcase }.join
  str[0..0].downcase + str[1..-1]
end