sunspot-rails-tester 0.0.1 → 0.0.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/README.md +6 -2
- data/lib/sunspot/rails/tester.rb +2 -2
- metadata +1 -1
data/README.md
CHANGED
|
@@ -57,7 +57,11 @@ The following articles served as guidance and inspiration for this gem:
|
|
|
57
57
|
|
|
58
58
|
* [http://blog.kabisa.nl/2010/02/03/running-cucumber-features-with-sunspot_rails/](http://blog.kabisa.nl/2010/02/03/running-cucumber-features-with-sunspot_rails/)
|
|
59
59
|
* [http://opensoul.org/blog/archives/2010/04/07/cucumber-and-sunspot/](http://opensoul.org/blog/archives/2010/04/07/cucumber-and-sunspot/)
|
|
60
|
-
|
|
60
|
+
|
|
61
|
+
## License
|
|
62
|
+
|
|
63
|
+
sunspot-rails-tester is released under the MIT license. See LICENSE for details.
|
|
64
|
+
|
|
61
65
|
## Copyright
|
|
62
66
|
|
|
63
|
-
Copyright (c) 2011 Justin Ko
|
|
67
|
+
Copyright (c) 2011 Justin Ko
|
data/lib/sunspot/rails/tester.rb
CHANGED
|
@@ -4,7 +4,7 @@ require 'forwardable'
|
|
|
4
4
|
module Sunspot
|
|
5
5
|
module Rails
|
|
6
6
|
class Tester
|
|
7
|
-
VERSION = '0.0.
|
|
7
|
+
VERSION = '0.0.2'
|
|
8
8
|
|
|
9
9
|
class << self
|
|
10
10
|
extend Forwardable
|
|
@@ -18,7 +18,7 @@ module Sunspot
|
|
|
18
18
|
self.pid = fork do
|
|
19
19
|
$stderr.reopen('/dev/null')
|
|
20
20
|
$stdout.reopen('/dev/null')
|
|
21
|
-
|
|
21
|
+
server.run
|
|
22
22
|
end
|
|
23
23
|
kill_at_exit
|
|
24
24
|
give_feedback
|