heel 0.3.1 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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