On 2013-Jul-8, at 12:15 , Karthikeyan A K wrote: > I gem file I added this: > > gem 'delayed_job_active_record' > > Then when I bundled, this happened: > > $ bundle > Fetching gem metadata from https://rubygems.org/.......... > Fetching gem metadata from https://rubygems.org/.. > Resolving dependencies... > Bundler could not find compatible versions for gem "activesupport": > In Gemfile: > delayed_job_active_record (>= 0) ruby depends on > activesupport (~> 3.0) ruby
You are aware that ~>3.0 is like ">=3.0 AND <4" > > sass-rails (~> 4.0.0) ruby depends on > activesupport (4.0.0) Similarly, ~>4.0.0 means ">=4.0.0 AND <4.1" Your delayed_job_active_record gem doesn't yet say that it works with 4.x. It might, but the author was (correctly!) conservative and needs to update the gem's dependencies. -Rob > > -- > Posted via http://www.ruby-forum.com/. > > -- > 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 [email protected]. > To post to this group, send email to [email protected]. > To view this discussion on the web visit > https://groups.google.com/d/msgid/rubyonrails-talk/04f82b0c5273262e568ed164b99313fc%40ruby-forum.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 [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/rubyonrails-talk/950E72B1-E6AA-4EA2-940A-791CE61A7544%40agileconsultingllc.com. For more options, visit https://groups.google.com/groups/opt_out.

