Class: Navio::Launcher

Inherits:
Object
  • Object
show all
Defined in:
lib/navio/launcher.rb

Overview

Open URLs in the default browser

Instance Method Summary collapse

Instance Method Details

#open_url(url) ⇒ Object



8
9
10
11
12
13
14
15
# File 'lib/navio/launcher.rb', line 8

def open_url(url)
  if url
    Launchy.open(url)
    true
  else
    false
  end
end