Sha256: 38fb7600a214f70ebf61463e7318a5ba65ad57b48bab2002ef0cbfc3842d54db
Contents?: true
Size: 447 Bytes
Versions: 44
Compression:
Stored size: 447 Bytes
Contents
# Copyright (c) 2008 Michael Fellinger m.fellinger@gmail.com # All files in this distribution are subject to the terms of the Ruby license. module Ramaze module CoreExtensions # Extensions for String module String # convert to snake_case from CamelCase # # 'FooBar'.snake_case # => 'foo_bar' def snake_case gsub(/\B[A-Z][^A-Z]/, '_\&').downcase.gsub(' ', '_') end end end end
Version data entries
44 entries across 44 versions & 5 rubygems