heel 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGES +6 -1
- data/lib/heel/server.rb +1 -1
- data/lib/heel/version.rb +1 -1
- metadata +1 -1
data/CHANGES
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
= Changelog
|
2
2
|
|
3
|
-
== Version 0.3.
|
3
|
+
== Version 0.3.2 - 2007-08-30
|
4
|
+
|
5
|
+
* fix failure to find background option
|
6
|
+
* remember to double check your tests before releasing
|
7
|
+
|
8
|
+
== Version 0.3.1 - 2007-08-30
|
4
9
|
|
5
10
|
* fix failure to find pid file [Bug #13530]
|
6
11
|
* remember to stop releasing software in the wee hours of the morning
|
data/lib/heel/server.rb
CHANGED
@@ -217,7 +217,7 @@ module Heel
|
|
217
217
|
config.run
|
218
218
|
config.log "heel running at http://#{options.address}:#{options.port} with document root #{options.document_root}"
|
219
219
|
|
220
|
-
if
|
220
|
+
if c_background_me then
|
221
221
|
config.write_pid_file
|
222
222
|
else
|
223
223
|
config.log "Use Ctrl-C to stop."
|
data/lib/heel/version.rb
CHANGED