Class: Hash
Overview
class String
Instance Method Summary collapse
-
#normalize_param(key, value) ⇒ String
This key value pair as a param.
-
#to_params ⇒ String
This hash as a query string.
-
#to_xml_attributes ⇒ String
The hash as attributes for an XML tag.
Instance Method Details
#normalize_param(key, value) ⇒ String
Returns This key value pair as a param.
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 |
# File 'lib/crackoid/core_extensions.rb', line 93 def normalize_param(key, value) param = '' stack = [] if value.is_a?(Array) param << value.map { |element| normalize_param("#{key}[]", element) }.join elsif value.is_a?(Hash) stack << [key,value] else param << "#{key}=#{URI.encode(value.to_s, Regexp.new("[^#{URI::PATTERN::UNRESERVED}]"))}&" end stack.each do |parent, hash| hash.each do |key, value| if value.is_a?(Hash) stack << ["#{parent}[#{key}]", value] else param << normalize_param("#{parent}[#{key}]", value) end end end param end |
#to_params ⇒ String
Returns This hash as a query string.
81 82 83 84 85 |
# File 'lib/crackoid/core_extensions.rb', line 81 def to_params params = self.map { |k,v| normalize_param(k,v) }.join params.chop! # trailing & params end |
#to_xml_attributes ⇒ String
Returns The hash as attributes for an XML tag.
123 124 125 126 127 |
# File 'lib/crackoid/core_extensions.rb', line 123 def to_xml_attributes map do |k,v| %{#{k.to_s.snake_case.sub(/^(.{1,1})/) { |m| m.downcase }}="#{v}"} end.join(' ') end |