Sha256: 795f5f6236cef49eef36c0d0b440c37cf9c6c05222978a3cf1f441e28a423ca4
Contents?: true
Size: 256 Bytes
Versions: 32
Compression:
Stored size: 256 Bytes
Contents
class Symbol # # Converts symbol to string and calls String#camel_case # def camel_case self.to_s.camel_case end # # Converts symbol to string and calls String#classify # def classify(mod = nil) self.to_s.classify(mod) end end
Version data entries
32 entries across 32 versions & 3 rubygems