diff --git a/.travis.yml b/.travis.yml index ca1610e..a75bfd7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,4 +7,5 @@ rvm: - rbx-19mode - rbx-18mode - jruby-19mode - +before_install: + - gem update bundler diff --git a/lib/net/ntlm/client/session.rb b/lib/net/ntlm/client/session.rb index b9d53df..d88664f 100644 --- a/lib/net/ntlm/client/session.rb +++ b/lib/net/ntlm/client/session.rb @@ -172,7 +172,7 @@ def password end def workstation - (client.domain ? oem_or_unicode_str(client.workstation) : "") + (client.workstation ? oem_or_unicode_str(client.workstation) : "") end def domain diff --git a/lib/net/ntlm/version.rb b/lib/net/ntlm/version.rb index ddd4d34..80e50d1 100644 --- a/lib/net/ntlm/version.rb +++ b/lib/net/ntlm/version.rb @@ -4,7 +4,7 @@ module NTLM module VERSION MAJOR = 0 MINOR = 5 - TINY = 2 + TINY = 3 STRING = [MAJOR, MINOR, TINY].join('.') end end