Tagged Questions
The curb tag has no wiki summary.
6
votes
5answers
2k views
Why is curl in Ruby slower than command-line curl?
I am trying to download more than 1m pages (URLs ending by a sequence ID). I have implemented kind of multi-purpose download manager with configurable number of download threads and one processing ...
2
votes
3answers
509 views
Can't Install Curb - Having problems with native extensions
I'm trying to install the curb gem on my Debian machine but I'm having a hard time building the gem with native extensions. I'm using RVM.
Just a list of things I'm using:
debian
bundler
rvm
...
2
votes
2answers
846 views
Having Issues with Curb gem on Mac Snow Leopard
This has consumed hours of my time.
in the console i run: require 'curb'
i get the error:
LoadError: dlopen(/usr/local/lib/ruby/gems/1.8/gems/taf2-curb-0.5.4.0/lib/curb_core.bundle, 9): no suitable ...
2
votes
1answer
400 views
Curb epsv problem
I'm having a problem using Curb (ruby curl bindings) for FTP downloads.
It looks like curb doesn't fall back to simple passive mode when extended passive mode fails. Extract from the log follows:
...
1
vote
2answers
85 views
How do I make bundler recognize installed curb gem?
I've successfully installed the curb gem on Mac OS X using sudo env ARCHFLAGS="-arch x86_64" gem install curb but when trying to run bundle install I still get this error:
Installing curb (0.7.16) ...
1
vote
0answers
407 views
curb gem installation: bundle install fails, but normal gem install works [closed]
solved: the openvz container did not have enough memory assigned to it.
I could need some help:
I want to install the curb gem through bundler.
My config (please request more details if needed):
...
1
vote
1answer
269 views
Zipfile download through CURL to an actual Zip-file in your file structure
I am trying to build a file downloader with the RubyGem Curb. (Look at This Question.)
I am trying to download a zip file and then with the class File I am trying to actually make the file so that I ...
1
vote
1answer
986 views
Ruby: How do I send a JSON POST request using Curb?
How can I set the request body of a CURB request to be my json string?
I am trying to do a JSON POST request using Curb.
My code:
require 'rubygems'
require 'curb'
require 'json'
myarray = {}
...
1
vote
2answers
527 views
Mock out Curl::Easy.perform? (in Curb)
Is there a way to mock out Curb's Easy.perform method for unit testing? I use this to hit Facebook's graph API, and none of the http mock libs seem to support Curb.
What's the best approach here?
1
vote
1answer
444 views
Curb curb-fu gem installation problem
I've installed the Curb and Curb-fu gem and libcurl on my Ubuntu box.
If I go into irb and run the following
irb(main):001:0> require 'rubygems'
=> true
irb(main):002:0> require 'curb'
...
1
vote
1answer
447 views
curb not working with rails
I have a simple class that is using curb to retrieve data. Everything works just find from the command line, but when I load it into my rails application WebBrick crashes on the "require 'curb'" ...
0
votes
1answer
26 views
curb post over ssl
how can you do a post over https using curb ruby gem?
This is how I do it over http to post a file to a server:
c = Curl::Easy.new("http://www.myserver.com/upload_messages")
c.multipart_form_post = ...
0
votes
0answers
18 views
curb gem on Mac Lion
I'm trying to install the curb gem in my Mac OSX Lion. I tried all solutions cited here already, like Having Issues with Curb gem on Mac Snow Leopard
my environment ruby 1.9.2 (rvm), mac OSX Lion, ...
0
votes
0answers
15 views
Curl::Multi.download is broken?
When I do
ruby-1.9.2-p180 :002 > Curl::Multi.download(["http://www.bbc.com"])
=> nil
The downloaded file is of zero size
ls -l
-rw-r--r-- 1 staff 0 Jan 5 19:51 www.bbc.com
But the ...
0
votes
1answer
40 views
Handling connection refused from curb(-fu) call
How can I deal with
Curl::Easy.http_get("dev-server.example.com")
Curl::Err::ConnectionFailedError: Curl::Err::ConnectionFailedError
from a curb or curb-fu call? Our dev servers are up and down so ...
0
votes
0answers
69 views
using curb-fu POST and PUT with directives
does anyone have some sample code for using CurbFu v.0.6.0??
in particular, im trying to execute the following curl commands:
curl --digest -uusername:pwd -v -X PUT -H 'Expect: ' -H 'Content-type: ...
0
votes
1answer
91 views
How to set limit-rate option in Curb gem?
I'd like to set --limit-rate option for downloads done by Curb gem (ruby interface to curl).
In curl:
curl --limit-rate 10K http://server/large_file.rar
For downloads by Curb I have this code ...
0
votes
0answers
151 views
Problem with curb when launching rails server
I want to use the gem feedzilla and thus I need Curb installed.
I had no troubles on my laptop (which is x86) installing and using it. But, in my desktop computer (which is x64) I got an error when ...
0
votes
1answer
268 views
curb + mechanize = segfault?
I get the following output from irb (v 0.9.5) when I require mechanize and then curb:
$ irb
>> require 'mechanize'
=> true
>> require 'curb'
=> true
>>
No problems there. ...
0
votes
2answers
472 views
Using gem Curb (curl) to download file
I have understood that I could use the RubyGem Curb to fulfill my needs of curl'ing down a file to my computer. But I cannot figure out how to actually "touch" the file. This is what I have got so far
...
0
votes
1answer
222 views
Ruby curb on Windows: I installed 0.7.12, bundler complains not being able to install 0.7.10
I got this error when calling "bundle update":
Installing curb (0.7.10) with native
extensions
C:/Ruby192/lib/ruby/site_ruby/1.9.1/rubygems/installer.rb:529:in
`rescue in block in ...
0
votes
1answer
222 views
curl.perform throws invalid easy handle error under multi-threading env
I use curl of ruby gem curb to fetch multi urls under multi-threading env, but it throws "Invalid easy handle" exception, but if it runs one by one in single-threading env everything is ok.
module ...
0
votes
1answer
174 views
Is is possible to force curb not use Keep Alive?
Using curb to communicate with some HTTP server and
looks like that HTTP server does not implements Keep-Alive properly.
This is why I'm searching way to force curb not use this feature.
Sure, I can ...
0
votes
1answer
283 views
How to convert an image string into a stream in Ruby
I use Ruby Gem curb to fetch image by the method of body_str of Curl::Easy instance, then want to use RMagick to process the image, however Magick::Image.read needs a file name to read, but what i get ...
0
votes
1answer
109 views
How can i activate --trace-asci debugging with curb/curl for ruby?
Standard curl supports command line option --trace-asci and --trace. Anyone any clues on how to set this option for a Curl::Easy object?
0
votes
1answer
174 views
libcurl on Windows problems
I am having a hard time installing libcurl ruby bindings gem (curb) on Windows. I have done everything right. I have libcurl directory on the PATH, and then I try two ways of installing the gem
gem ...
0
votes
1answer
377 views
Using curb gem and libcurl on Windows
I am trying to install the curb gem, which is libcurl bindings for Ruby, and of course I need to have "A working (lib)curl installation, with development stuff" installed on my computer. So, I went to ...