Sha256: 8bdfd41128a7bccf4a42c149029688bbbb11afe44cccaed76f4d953877b5f15c

Contents?: true

Size: 698 Bytes

Versions: 5

Compression:

Stored size: 698 Bytes

Contents

unless Object.new.respond_to? :to_query and Object.new.respond_to? :to_param
  class Object
    def to_param
      to_s
    end

    def to_query(key)
      require 'cgi' unless defined?(CGI) && defined?(CGI::escape)
      "#{CGI.escape(key.to_s)}=#{CGI.escape(to_param.to_s)}"
    end
  end

  class Array
    def to_param
      map(&:to_param).join('/')
    end

    def to_query(key)
      prefix = "#{key}[]"
      collect { |value| value.to_query(prefix) }.join '&'
    end
  end

  class Hash
    def to_param(namespace = nil)
      collect do |key, value|
        value.to_query(namespace ? "#{namespace}[#{key}]" : key)
      end.sort * '&'
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
riak-client-2.4.1 lib/riak/core_ext/to_param.rb
riak-client-2.4.0 lib/riak/core_ext/to_param.rb
riak-client-2.4.0.pre1 lib/riak/core_ext/to_param.rb
riak-client-2.3.2 lib/riak/core_ext/to_param.rb
riak-client-2.3.1 lib/riak/core_ext/to_param.rb