Hi, Please solve below dependency. Bundler could not find compatible versions for gem "faraday": In Gemfile: swiftype (>= 0) ruby depends on faraday (~> 0.8.1) ruby context-io (>= 0) ruby depends on faraday (0.7.6) I follow below links but not getting:- 1. http://stackoverflow.com/questions/6132479/2-gems-need-different-versions-of-the-same-dependencyhttp://stackoverflow.com/questions/8878980/rails-bundle-one-gem-two-versions?rq=1http://stackoverflow.com/questions/6320363/adding-2-versions-of-a-gem-in-bundler?rq=1 2. 3:25 AM http://stackoverflow.com/questions/7144846/bundler-could-not-find-compatible-versions-for-gem Thanks Best Regards Fahim Babar Patel -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/48f0bf8e-7c7a-4e40-b8d8-650781a7ae33%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
On 18 June 2013 00:25, Fahim Patel <pafahim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hi, > > Please solve below dependency. > > > Bundler could not find compatible versions for gem "faraday": > In Gemfile: > swiftype (>= 0) ruby depends on > faraday (~> 0.8.1) ruby > > context-io (>= 0) ruby depends on > faraday (0.7.6)If what you have stated above is correct then you are stuck as there is no version of faraday that will satisfy both requirements. Have you checked whether you have the latest versions of context-io and swiftype? Try bundle update swiftype bundle update context-io bundle install Colin> > > > I follow below links but not getting:- > > http://stackoverflow.com/questions/6132479/2-gems-need-different-versions-of-the-same-dependency > http://stackoverflow.com/questions/8878980/rails-bundle-one-gem-two-versions?rq=1 > http://stackoverflow.com/questions/6320363/adding-2-versions-of-a-gem-in-bundler?rq=1 > > 3:25 AM > http://stackoverflow.com/questions/7144846/bundler-could-not-find-compatible-versions-for-gem > > > Thanks > > Best Regards > Fahim Babar Patel > > > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/48f0bf8e-7c7a-4e40-b8d8-650781a7ae33%40googlegroups.com. > For more options, visit https://groups.google.com/groups/opt_out. > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL%3D0gLst_H%2BGMkWvUqbL7gp8AiCZP-_z8DOqVHyy%2BaYKfwY0AA%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Thanks Colin for reply. When i try to fire your commands terminal get hanged. On Tuesday, June 18, 2013 4:55:09 AM UTC+5:30, Fahim Patel wrote:> > Hi, > > Please solve below dependency. > > > Bundler could not find compatible versions for gem "faraday": > In Gemfile: > swiftype (>= 0) ruby depends on > faraday (~> 0.8.1) ruby > > context-io (>= 0) ruby depends on > faraday (0.7.6) > > > > I follow below links but not getting:- > > > 1. > > http://stackoverflow.com/questions/6132479/2-gems-need-different-versions-of-the-same-dependencyhttp://stackoverflow.com/questions/8878980/rails-bundle-one-gem-two-versions?rq=1http://stackoverflow.com/questions/6320363/adding-2-versions-of-a-gem-in-bundler?rq=1 > > 2. 3:25 AM > > http://stackoverflow.com/questions/7144846/bundler-could-not-find-compatible-versions-for-gem > > > Thanks > > Best Regards > Fahim Babar Patel > > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/047992e1-5fdc-4c6c-9852-e481a99dd473%40googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out.
Hi, I caught up in the same situation when I was trying to use pingdom-client<https://rubygems.org/gems/pingdom-client>and google_drive <http://rubygems.org/gems/google_drive> together in one application. Pingdom--client has dependency on faraday0.5.6 whereas google_drive depends upon faraday0.8 . I downloaded the pingdom-client gem, stored it locally(not the standard ruby gems location) and in the Gemfile provided a local link. Then I changed in the config files the dependency to newer version of faraday. Though it didn''t work in my case for some reason I don''t remember, you can try if this works for you. I''d love to see any standard solution to this. Aman Mangal 3rd year Undergraduate Department of Computer Science & Engineering IIT Bombay www.cse.iitb.ac.in/~amanmangal On Tue, Jun 18, 2013 at 11:13 PM, Fahim Patel <pafahim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thanks Colin for reply. > When i try to fire your commands terminal get hanged. > > > On Tuesday, June 18, 2013 4:55:09 AM UTC+5:30, Fahim Patel wrote: >> >> Hi, >> >> Please solve below dependency. >> >> >> >> Bundler could not find compatible versions for gem "faraday": >> In Gemfile: >> swiftype (>= 0) ruby depends on >> faraday (~> 0.8.1) ruby >> >> context-io (>= 0) ruby depends on >> faraday (0.7.6) >> >> >> >> >> >> I follow below links but not getting:- >> >> >> >> 1. >> >> http://stackoverflow.com/**questions/6132479/2-gems-need-**different-versions-of-the-**same-dependency <http://stackoverflow.com/questions/6132479/2-gems-need-different-versions-of-the-same-dependency>http://stackoverflow.com/**questions/8878980/rails-**bundle-one-gem-two-versions?**rq=1 <http://stackoverflow.com/questions/8878980/rails-bundle-one-gem-two-versions?rq=1>http://stackoverflow.com/**questions/6320363/adding-2-**versions-of-a-gem-in-bundler?**rq=1 <http://stackoverflow.com/questions/6320363/adding-2-versions-of-a-gem-in-bundler?rq=1> >> >> 2. 3:25 AM >> http://stackoverflow.com/**questions/7144846/bundler-** >> could-not-find-compatible-**versions-for-gem<http://stackoverflow.com/questions/7144846/bundler-could-not-find-compatible-versions-for-gem> >> >> >> Thanks >> >> Best Regards >> Fahim Babar Patel >> >> >> >> >> -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/047992e1-5fdc-4c6c-9852-e481a99dd473%40googlegroups.com > . > > For more options, visit https://groups.google.com/groups/opt_out. > > >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/CAL6Z3hx1SA%2BoXVx8EoPtwuq9hh00fjOtuMFB5LihST6PjverXQ%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
Fahim Patel <pafahim-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Please solve below dependency.Use contextio instead of context-io -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To unsubscribe from this group and stop receiving emails from it, send an email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/51c5f30e.aa2b320a.533d.ffff9a56%40mx.google.com. For more options, visit https://groups.google.com/groups/opt_out.