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
_______________________________________________
MacRuby-devel mailing list
MacRuby-devel@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macruby-devel

Reply via email to