search for: taf2

Displaying 4 results from an estimated 4 matches for "taf2".

Did you mean: taf
2009 Nov 03
1
Installing Feedzirra (and Curl/Curb) on Windows Vista
...th-curllib --without-curllib extconf.rb:12: Can''t find libcurl or curl/curl.h (RuntimeError) Try passing --with-curl-dir or --with-curl-lib and --with-curl- include options to extconf. Gem files will remain installed in C:/Program Files/Ruby/186-26/lib/ ruby/gems/1. 8/gems/taf2-curb-0.5.4.0 for inspection. Results logged to C:/Program Files/Ruby/186-26/lib/ruby/gems/1.8/gems/ taf2-curb- 0.5.4.0/ext/gem_make.out I took this as Curl was not installed, so have been trying to work out how to setup Curl in my enviroment with no success at all. I''ve download curl-7.1...
2012 Nov 07
1
select(): Interrupted system call from curb when stopping unicorn
..., gets interrupted by the QUIT signal and doesn''t retry the select() and the process terminates, causing an error for the unfortunate end user. Our options for stopping our users seeing error pages seem to be: 1) Patch curb to retry the select() if errno = EINTR as per https://github.com/taf2/curb/issues/117 We''re not confident enough in our ability to do this properly, but it''s probably the most correct way to solve this. 2) Do something to make sure that requests have all completed before sending the QUIT. For example, we could change our deployment to make the he...
2010 Sep 27
3
having some issues with factory_girl and bundler...
...ols", ">= 1.0.2" gem "json", ">= 1.2.4" gem "nokogiri", ">= 1.4.0" gem "tzinfo", ">=0.3.5" gem "SystemTimer", ">=1.1.3" gem "will_paginate", ">= 2.3.11" gem "taf2-curb", ">=0.3.5.0" gem "pg" gem "hoptoad_notifier" gem "treetop" gem "term-ansicolor" gem "diff-lcs" group :development, :test do gem "factory_girl", :require => ''factory Note: last tried... Placing it out...
2013 Jun 19
0
Running RSpec tests, how can I resolve a “Curl::Err::OutOfMemoryError”?
Running an rspec test with ruby bindings for libcurl (with curb<https://github.com/taf2/curb>) like so: it "Should return a certain user in a JSON array" do $var = Curl::Easy.new("some-url.com") $var.perform response = JSON.parse($var.body_str) response[''user''].should eq(''some user name'') end and sometimes I get thi...