Sha256: c0d0e2aa50c348b80b616c5eff0edd75a78927c50c59dd27668ee14f406200f7
Contents?: true
Size: 426 Bytes
Versions: 26
Compression:
Stored size: 426 Bytes
Contents
class String # Replaces underscores with spaces and capitalizes word. # def humanize self.gsub(/_/, " ").capitalize end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # =begin test require 'test/unit' class TCString < Test::Unit::TestCase def test_humanize assert_equal( 'This is it', 'this_is_it'.humanize ) end end =end
Version data entries
26 entries across 26 versions & 1 rubygems