public
Rubygem
Description: JSON Web App Framework
Homepage: http://halcyon.rubyforge.org/
Clone URL: git://github.com/mtodd/halcyon.git
Click here to lend your support to: halcyon and make a donation at www.pledgie.com !
Made sure the port value passed to the Mongrel handler (via Rack) was an 
integer, fixing #14. Thanks to ramdestedt for the fix.

git-svn-id: svn+ssh://rubyforge.org/var/svn/halcyon/trunk@41 
334d6d1c-2662-47f5-9f2d-00d938bdab95
mtodd (author)
Sun Feb 10 19:17:37 -0800 2008
commit  563c17f401d8ad4fc12601fca44c75364d410419
tree    87937f9263257902ab7dd0c98175e79269bd22f8
parent  bab0c0a4ae6bb549706b2945d9eae6f50c34de7c
0
...
109
110
111
 
112
113
114
...
109
110
111
112
113
114
115
0
@@ -109,6 +109,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
0
 
0
 * Bill Marquette, typo correction, reviewing examples
0
 * Elliott Cable, missing dependency, Thin testing
0
+* ramstedt, Mongrel on JRuby port numericality issue (#14)
0
 
0
 == Links
0
 
...
202
203
204
205
 
...
202
203
204
 
205
0
@@ -202,4 +202,4 @@ end
0
 # start server
0
 #++
0
 
0
-server.run app, :Port => options[:port]
0
+server.run app, :Port => Integer(options[:port])

Comments

    No one has commented yet.