diff options
author | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 |
---|---|---|
committer | Steve Kemp <steve@steve.org.uk> | 2015-03-09 13:03:12 +0000 |
commit | 2921a7c7b8ab27350108ae0e678947085ded7b94 (patch) | |
tree | 45f8d2a48cf2d0ff37f1a1e18c736bd68f090b99 /lib/custodian/protocoltest/mx.rb | |
parent | 7473d89d4cb01a50921b9edcd262838b1adff437 (diff) |
Don't use "::" for method-calls.
Instead prefer ".".
Flagged by rubocop
Diffstat (limited to 'lib/custodian/protocoltest/mx.rb')
-rw-r--r-- | lib/custodian/protocoltest/mx.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/custodian/protocoltest/mx.rb b/lib/custodian/protocoltest/mx.rb index 8f260f9..c05283d 100644 --- a/lib/custodian/protocoltest/mx.rb +++ b/lib/custodian/protocoltest/mx.rb @@ -73,7 +73,7 @@ module Custodian Resolv::DNS.open do |dns| ress = dns.getresources(@host, Resolv::DNS::Resource::IN::MX) - ress.map { |r| mx.push( IPSocket::getaddress(r.exchange.to_s) ) } + ress.map { |r| mx.push( IPSocket.getaddress(r.exchange.to_s) ) } end end rescue Timeout::Error => e |