Skip to content
This repository has been archived by the owner on Jan 21, 2020. It is now read-only.

update to launchy 2.0 #28

Merged
merged 1 commit into from Jul 18, 2011
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion Gemfile
Expand Up @@ -10,7 +10,7 @@ group :production do
gem "rake", "0.8.7"
gem "thor", "0.14.6"
gem "nokogiri", "1.4.4"
gem "launchy", "0.3.7"
gem "launchy", "2.0.3"
gem "thin", "1.2.7"
gem "sinatra", "1.1.2"
gem "haml", "3.0.25"
Expand Down
2 changes: 1 addition & 1 deletion lib/sonia/cli.rb
Expand Up @@ -11,7 +11,7 @@ class CLI < Thor
def start
require "sonia"
Sonia::Server.run!(Config.new(options)) do
Launchy::Browser.run(Sonia::Server.webserver_url) unless options[:'no-auto']
Launchy.open(Sonia::Server.webserver_url) unless options[:'no-auto']
end
end

Expand Down