Skip to content

Instantly share code, notes, and snippets.

@vireshas
Last active December 16, 2015 09:29
Show Gist options
  • Save vireshas/5413268 to your computer and use it in GitHub Desktop.
Save vireshas/5413268 to your computer and use it in GitHub Desktop.
expand short urls #Ruby
require "curb"
class ExpandUrl
def self.expand short_url
c = Curl::Easy.new(short_url) {|req| req.follow_location = true}
c.perform
puts c.last_effective_url
end
end
# ExpandUrl::expand("http://t.co/FwlOG9pULo")
# ExpandUrl::expand("http://www.youtubeshare.com/M3e")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment