Sha256: 455ab6874094b7436447c6505d00eef6c3e0d117ff6889685cc1e44e5fedd03e
Contents?: true
Size: 446 Bytes
Versions: 44
Compression:
Stored size: 446 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 # simple transformation to CamelCase from snake_case # # 'foo_bar'.camel_case # => 'FooBar' def camel_case split('_').map{|e| e.capitalize}.join end end end end
Version data entries
44 entries across 44 versions & 5 rubygems