Class: Thug::Utils

Inherits:
Object
  • Object
show all
Defined in:
lib/thug/utils.rb

Instance Method Summary collapse

Instance Method Details

#internet?Boolean

Returns:

  • (Boolean)


6
7
8
9
10
11
12
# File 'lib/thug/utils.rb', line 6

def internet?
  begin
      true if open("http://www.google.com/")
  rescue
      false
  end
end