From 4838bb64e1411baa4fcf2ebea1cea282b2ce5ff3 Mon Sep 17 00:00:00 2001 From: Aaron Quint Date: Mon, 24 May 2010 23:50:55 -0400 Subject: [PATCH] Updated HISTORY, 0.1.7 --- History.txt | 9 +++++++++ README.rdoc | 4 +++- lib/vegas.rb | 2 +- 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/History.txt b/History.txt index 2776429..242f844 100644 --- a/History.txt +++ b/History.txt @@ -1,3 +1,12 @@ +== 0.1.7 + +* Exit with specific exit status (for monitoring/good unix citizen). +* Kill only after all options have been parsed. + +== 0.1.6 + +* Fixed: FileUtils no longer loaded by default + == 0.1.5 2010-03-09 * Fixed: Gracefully catch error when thin isnt available (nevans) diff --git a/README.rdoc b/README.rdoc index 3e5e44e..1c138fb 100644 --- a/README.rdoc +++ b/README.rdoc @@ -26,7 +26,9 @@ See the website: http://code.quirkey.com/vegas for full usage/options. === WINDOWS: Using vegas (and gems that depend on it) on Windows works but isn't 100% the same. -Daemon-ization and browser launching work, but you will see duplicate messages. +Daemon-ization and browser launching work, but you will see duplicate messages. +Some options might also be lost in the process. I suggest running Vegas apps +in windows with the -F (foreground) flag. If you see a warning like: diff --git a/lib/vegas.rb b/lib/vegas.rb index 24cc892..029a178 100644 --- a/lib/vegas.rb +++ b/lib/vegas.rb @@ -8,7 +8,7 @@ $LOAD_PATH.unshift File.dirname(__FILE__) module Vegas - VERSION = "0.1.6" + VERSION = "0.1.7" WINDOWS = !!(RUBY_PLATFORM =~ /(mingw|bccwin|wince|mswin32)/i) autoload :Runner, 'vegas/runner'