Skip to content

Instantly share code, notes, and snippets.

@digitalex
Created March 14, 2012 09:02
Show Gist options
  • Save digitalex/2035239 to your computer and use it in GitHub Desktop.
Save digitalex/2035239 to your computer and use it in GitHub Desktop.
IP address to integer oneliner
def self.parse_ip(ip)
ip.split('.').collect(&:to_i).inject { |memo,x| x + (memo << 0x1) }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment