Sha256: 4aa151374b2b8b305c1f8df2c92e5e6ffcf43efe4dd0621b8957209515d4fb6d
Contents?: true
Size: 425 Bytes
Versions: 22
Compression:
Stored size: 425 Bytes
Contents
require 'facet/string/camelize' class Symbol def camelize( *args ) self.to_s.camelize( *args ).to_sym end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCSymbol < Test::Unit::TestCase # camelize def test_camelize assert_equal( :ThisIsTest, :this_is_test.camelize ) end end =end
Version data entries
22 entries across 22 versions & 1 rubygems