lib/adauth/connection.rb in adauth-2.0.0pre2 vs lib/adauth/connection.rb in adauth-2.0.0

- old
+ new

@@ -15,24 +15,24 @@ def bind conn = Net::LDAP.new :host => @config[:server], :port => @config[:port], :base => @config[:base] if @config[:encryption] - conn.encryption = @config[:encryption] + conn.encryption @config[:encryption] end conn.auth "#{@config[:username]}@#{@config[:domain]}", @config[:password] begin Timeout::timeout(10){ if conn.bind return conn else - raise "Query User Rejected" + raise 'Query User Rejected' end } rescue Timeout::Error - raise "Unable to connect to LDAP Server" + raise 'Unable to connect to LDAP Server' end end end end \ No newline at end of file