Skip to content

Instantly share code, notes, and snippets.

@stereosupersonic
Created May 3, 2012 08:32
Show Gist options
  • Save stereosupersonic/2584387 to your computer and use it in GitHub Desktop.
Save stereosupersonic/2584387 to your computer and use it in GitHub Desktop.
check internet connenction
#from here: http://stackoverflow.com/questions/2385186/check-if-internet-connection-exists-with-ruby
require 'open-uri'
def internet_connection?
begin
true if open("http://www.google.com/")
rescue
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment