Sha256: db11f4bc98010aa3304909465828638cca7860c20a7de5ac49e79595a11b1b23
Contents?: true
Size: 321 Bytes
Versions: 26
Compression:
Stored size: 321 Bytes
Contents
class String # Underscore string based on camelcase characteristics. # def underscore #(camel_cased_word) self.gsub(/([A-Z]+)([A-Z])/,'\1_\2').gsub(/([a-z])([A-Z])/,'\1_\2').downcase end end # _____ _ # |_ _|__ ___| |_ # | |/ _ \/ __| __| # | | __/\__ \ |_ # |_|\___||___/\__| # # TODO
Version data entries
26 entries across 26 versions & 1 rubygems