私のアプリは、ビデオの埋め込みにパンダを使用しています。config 内に panda.rb 初期化子と panda.yml ファイルを作成しました。パンダに接続できます(レールコンソールを起動します)。Panda::Profile.all を実行すると、次のエラーが発生します。
1.8.7-p371 :001 > Panda::Profile.all
Ethon::Errors::InvalidOption: The option: disable_ssl_peer_verification is invalid.
Please try ssl_verifypeer instead of disable_ssl_peer_verification.
from /home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-0.5.10/lib/ethon/easy.rb:255:in
`set_attributes'
from /home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-0.5.10/lib/ethon/easy.rb:253:in
`each_pair'
https://github.com/typhoeus/typhoeus/issues/226#issuecomment-9919517で、このエラー メッセージに対して typhoeus に対して提案された変更に基づいています。
easy.rb 内に require 'typhoeus/adapters/faraday' という行を追加しました (home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-0.5.10/easy.rb)
ただし、rails cを実行しようとすると、次のエラーが発生します。
/home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/typhoeus-
0.6.2/lib/typhoeus/adapters/faraday.rb:19: undefined method `supports_parallel='
for Faraday::Adapter::Typhoeus:Class (NoMethodError)
from /home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-.5.10/lib/ethon/easy.rb:11:in
`require'
from /home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-0.5.10/lib/ethon/easy.rb:11
from /home/vasu/.rvm/gems/ruby-1.8.7-p371/gems/ethon-0.5.10/lib/ethon.rb:9:in
`require'
アプリの gem のリストを見ると、ethon (0.5.10) faraday (0.7.6) typhoeus (0.6.2) が使用されていることがわかります。
私は何を間違っていますか?