Skip to content

Instantly share code, notes, and snippets.

@kjlape
Last active January 24, 2018 21:03
Show Gist options
  • Select an option

  • Save kjlape/596102e6264e21e915e994aedc889419 to your computer and use it in GitHub Desktop.

Select an option

Save kjlape/596102e6264e21e915e994aedc889419 to your computer and use it in GitHub Desktop.
def check(value)
uri = URI.parse(value) rescue nil
case uri
when URI::HTTP, URI::HTTPS
uri.host && true
else
false
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment