Sha256: c4950a7e0d4850f7600ff562de19645cb52e5381ba9e6aea7af7d1267ee57750
Contents?: true
Size: 1.11 KB
Versions: 3
Compression:
Stored size: 1.11 KB
Contents
module RocketChat # # Rocket.Chat generic utility functions # module Util module_function # # Stringify symbolized hash keys # @param [Hash] hash A string/symbol keyed hash # @return Stringified hash # def stringify_hash_keys(hash) new_hash = {} hash.each do |key, value| new_hash[key.to_s] = if value.is_a? Hash stringify_hash_keys value else value end end new_hash end # # Slice keys from hash # @param [Hash] hash A hash to slice key/value pairs from # @param [Array] *keys The keys to be sliced # @return Hash filtered by keys # def slice_hash(hash, *keys) return {} if keys.length.zero? new_hash = {} hash.each do |key, value| new_hash[key] = value if keys.include? key end new_hash end # # Camelize a string or symbol # @param [String/Symbol] string A string or symbol # @return a camelized string # def camelize(string) string.to_s.gsub(/_([a-z])/) { Regexp.last_match(1).upcase } end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rocketchat-0.1.18 | lib/rocket_chat/util.rb |
rocketchat-0.1.17 | lib/rocket_chat/util.rb |
rocketchat-0.1.16 | lib/rocket_chat/util.rb |