Sha256: 1a4fc03ab4584eb18886ce2ca6842423792d5e68a124afa56dd826d418fd4e55
Contents?: true
Size: 631 Bytes
Versions: 13
Compression:
Stored size: 631 Bytes
Contents
module Grape module Extensions module Hash module ParamBuilder extend ::ActiveSupport::Concern included do namespace_inheritable(:build_params_with, Grape::Extensions::Hash::ParamBuilder) end def build_params params = Grape::Extensions::DeepMergeableHash[rack_params] params.deep_merge!(grape_routing_args) if env[Grape::Env::GRAPE_ROUTING_ARGS] post_process_params(params) end def post_process_params(params) Grape::Extensions::DeepSymbolizeHash.deep_symbolize_keys_in(params) end end end end end
Version data entries
13 entries across 13 versions & 2 rubygems