vote up 5 vote down star

In Python, you can do this:

import webbrowser
webbrowser.open_new("http://example.com/")

It will open the passed in url in the default browser

Is there a ruby equivalent?

flag

6 Answers

vote up 14 vote down check

Cross-platform solution

First, install the Launchy gem:

$ [sudo] gem install launchy

Then, you can run this:

require 'rubygems'
require 'launchy'

Launchy.open("http://stackoverflow.com")
link|flag
vote up 1 vote down

Windows Only Solution:

require 'win32ole'
shell = WIN32OLE.new('Shell.Application')
shell.ShellExecute(...)

Shell Execute on MSDN

link|flag
vote up 0 vote down

If it's windows and it's IE, try this: http://rubyonwindows.blogspot.com/search/label/watir also check out Selenium ruby: http://selenium.rubyforge.org/getting-started.html

HTH

link|flag
The point was that you don't have to guess what the default browser is. If it was IE, there'd be no question of what to do. – Adriano Varoli Piazza Sep 30 '08 at 21:22
vote up 0 vote down

Mac-only solution:

system("open", "http://stackoverflow.com/")

or

`open http://stackoverflow.com/`
link|flag
vote up 0 vote down

This also works:

system("start #{link}")
link|flag
Note, this is Windows-only solution. – Ryan McGeary Sep 30 '08 at 16:19
vote up 2 vote down

Simplest Win solution:

`start http://www.example.com`
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.