2

I’m trying to use twitter gem and getting

Faraday::Builder is now Faraday::RackBuilder 

when I run the code. Anybody else got this or have idea how to resolve it

Aniruddha
  • 3,157
  • 4
  • 32
  • 48

1 Answers1

3

I resolved this error by upgrading twitter gem to current stable. Seems like you use old version and it calls Faraday::Builder instead of Faraday::RackBuilder, which triggers this warning.

So there are 2 possible solutions:

  1. To upgrade twitter gem version to stable, which uses Faraday::RackBuilder
  2. To downgrade faraday gem version, where you suppose to use Faraday::Builder(0.8.x if I remember correctly)
Rustam Gasanov
  • 15,290
  • 8
  • 59
  • 72