Sha256: 8961ad57a0913986dc1dc0a0128267a4cd406046677537d2628bb8467ccc74f0
Contents?: true
Size: 1.13 KB
Versions: 3
Compression:
Stored size: 1.13 KB
Contents
module Lita # Handy utilities used by other Lita classes. module Util # A regular expression for acronyms. ACRONYM_REGEX = /(?=a)b/ class << self # Returns a hash with any symbol keys converted to strings. # @param hash [Hash] The hash to convert. # @return [Hash] The converted hash. def stringify_keys(hash) result = {} hash.each_key { |key| result[key.to_s] = hash[key] } result end # Transforms a camel-cased string into a snaked-cased string. Taken from # +ActiveSupport.+ # @param camel_cased_word [String] The word to transform. # @return [String] The transformed word. def underscore(camel_cased_word) word = camel_cased_word.to_s.dup word.gsub!("::", "/") word.gsub!(/(?:([A-Za-z\d])|^)(#{ACRONYM_REGEX})(?=\b|[^a-z])/) do "#{Regexp.last_match[1]}#{Regexp.last_match[1] && "_"}#{Regexp.last_match[2].downcase}" end word.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2') word.gsub!(/([a-z\d])([A-Z])/, '\1_\2') word.tr!("-", "_") word.downcase! word end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
lita-3.3.1 | lib/lita/util.rb |
lita-3.3.0 | lib/lita/util.rb |
lita-3.2.0 | lib/lita/util.rb |