Flowdock
parse_query() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/uri/ldap.rb, line 75
    def parse_query
      @attributes = nil
      @scope      = nil
      @filter     = nil
      @extensions = nil

      if @query
        attrs, scope, filter, extensions = @query.split('?')

        @attributes = attrs if attrs && attrs.size > 0
        @scope      = scope if scope && scope.size > 0
        @filter     = filter if filter && filter.size > 0
        @extensions = extensions if extensions && extensions.size > 0
      end
    end
Register or log in to add new notes.