Sha256: 93f796f15245e1c31e8b49aa71f6cac7b6774f94a21d163f77d9f6fc407095b7
Contents?: true
Size: 883 Bytes
Versions: 28
Compression:
Stored size: 883 Bytes
Contents
# -*- encoding: utf-8 -*- module Github # Allows you to specify parameters keys which will be preserved # in parameters hash and its subhashes. Any keys from the nested # hash that do not match will be removed. module ParameterFilter # Removes any keys from nested hashes that don't match predefiend keys # def filter!(keys, params, options={:recursive => true}) # :nodoc: case params when Hash params.keys.each do |k, v| unless (keys.include?(k) or Github::Validations::VALID_API_KEYS.include?(k)) params.delete(k) else filter!(keys, params[k]) if options[:recursive] end end when Array params.map! do |el| filter!(keys, el) if options[:recursive] end else params end return params end end # Filter end # Github
Version data entries
28 entries across 28 versions & 1 rubygems