Launchy 2.0.4 released

launchy version 2.0.4
by Jeremy H.
launchy-2.0.4 Documentation

== DESCRIPTION

Launchy is helper class for launching cross-platform applications in a
fire and forget manner.

There are application concepts (browser, email client, etc) that are
common across all platforms, and they may be launched differently on
each platform. Launchy is here to make a common approach to launching
external application from within ruby programs.

== INSTALL

gem install launchy

== USAGE

On the commandline:

% launchy http://www.ruby-lang.org/

Or from some code:

Launchy.open( "http://www.ruby-lang.org" )

== CHANGES

  • Add capability to open local files with no file: scheme present
    (copiousfreetime/launchy#29)
  • Added ‘rake how_to_contribute’ task (copiousfreetime/launchy#30)
  • Make better decisions on when to do shell escaping
    (copiousfreetime/launchy#31)
  • Switch to Addressable::URI so UTF-8 urls may be parsed.
    (copiousfreetime/launchy#32)