3 Jul
2013
3 Jul
'13
11:17 a.m.
Hi, I have the following: require 'net/http' def copy() uri = URI('http://localhost:3000/api/copy/test') Net::HTTP.post_form(uri, 'value' => "testing") end copy() When I run that code with macruby myscript.rb I get segmentation fault 11, When I run this code require 'net/http' uri = URI('http://localhost:3000/api/copy/test') Net::HTTP.post_form(uri, 'value' => "testing") I don't. The post goes through fine in both instances. I suppose there has to be some really simple thing I am missing here? Thanks, Bryan Rasmussen