Class: IPAddr

Inherits:
Object
  • Object
show all
Defined in:
lib/gclouder/monkey_patches/ipaddr.rb

Class Method Summary collapse

Class Method Details

.valid?(obj) ⇒ Boolean

Returns:



4
5
6
7
8
9
# File 'lib/gclouder/monkey_patches/ipaddr.rb', line 4

def self.valid?(obj)
  IPAddr.new(obj)
  true
rescue IPAddr::InvalidAddressError
  false
end