method
build_path_query
v1_9_2_180 -
Show latest stable
- Class:
URI::LDAP
build_path_query()private
No documentation available.
# File lib/uri/ldap.rb, line 92
def build_path_query
@path = '/' + @dn
query = []
[@extensions, @filter, @scope, @attributes].each do |x|
next if !x && query.size == 0
query.unshift(x)
end
@query = query.join('?')
end