Sha256: d804f7ac9ea01599da42b6148fa10a891dd98bd4a4ee92d86835ac70e7b48d70
Contents?: true
Size: 961 Bytes
Versions: 1
Compression:
Stored size: 961 Bytes
Contents
require 'multi_json' module ChalkRuby module Helpers # Convert an Hash to json # def to_json(body:) body.is_a?(String) ? body : MultiJson.dump(body) end # Converts each key of a hash to symbols # def symbolize_hash(hash:) hash.each_with_object({}) { |(k, v), h| h[k.to_sym] = v } end # Convert a json object to an hash # def json_to_hash(json:, symbolize_keys:) MultiJson.load(json, symbolize_keys: symbolize_keys) end # Retrieve the given value associated with a key, in string or symbol format # def get_option(hash:, key:) hash[key.to_sym] || hash[key] || nil end # Build a path with the given arguments # def path_encode(path, *args) arguments = [] args.each do |arg| arguments.push(CGI.escape(arg.to_s)) end format(path, *arguments) end def self.included(base) base.extend(Helpers) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
chalk_ruby-0.1.0 | lib/chalk_ruby/helpers.rb |