Cross-platform browser launcher for Ruby?
24 September, 2008 - 123 words
In Python, you can do this:
import webbrowser
webbrowser.open_new(<a href="http://philwilson.org/blog">http://philwilson.org/blog</a>)
and lo! it will open your default browser at that URL whether you are on Windows, Linux or Mac.
I can’t find the same functiona...