[MacRuby-devel] segmentation fault 11 with net:http post inside of a function?

bryan rasmussen rasmussen.bryan at gmail.com
Wed Jul 3 04:17:22 PDT 2013


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


More information about the MacRuby-devel mailing list