spork 0.4.0 → 0.4.1
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/README.rdoc +3 -1
- metadata +1 -1
data/README.rdoc
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
== SYNOPSIS:
|
|
6
6
|
|
|
7
|
-
Spork is a Drb spec server (similar to the script/spec_server provided by rspec-rails), except rather than using the Rails constant unloading to reload your files, it forks a copy of the server each time you run your specs. The result? Spork runs more solid: it doesn't get corrupted over time, and it properly handles modules and any voo-doo meta programming you may have put in your app.
|
|
7
|
+
Spork is Tim Harper's implementation of a Drb spec server (similar to the script/spec_server provided by rspec-rails), except rather than using the Rails constant unloading to reload your files, it forks a copy of the server each time you run your specs. The result? Spork runs more solid: it doesn't get corrupted over time, and it properly handles modules and any voo-doo meta programming you may have put in your app.
|
|
8
8
|
|
|
9
9
|
Because Spork uses Kernel.fork, it only works on POSIX systems. This means Windows users are not invited to this party. Sorry :(
|
|
10
10
|
|
|
@@ -68,3 +68,5 @@ On one of our projects, many of us using TextMate with spork, only one developer
|
|
|
68
68
|
* Ben Mabey - help with documentation, testing, suggestions, patches, collaborated with Cucumber support.
|
|
69
69
|
* David Chelimsky - for the fine RSpec testing framework, and the original rspec-rails spec_server implementation, which Spork has built upon.
|
|
70
70
|
* Lead Media Partners - just for being an awesome place to work.
|
|
71
|
+
|
|
72
|
+
Spork (c) 2009 Tim Harper, released under the MIT license
|