I have a new app using rails 3.1 and mongo_mapper, I cannot seem to get past this when doing bundler: I have installed activesupport 3.0.0 with no avail. Bundler could not find compatible versions for gem "activesupport": In Gemfile: mongo_mapper depends on activesupport (~> 3.0.0) rails (= 3.1.0.rc5) depends on activesupport (3.1.0.rc5) -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To view this discussion on the web visit https://groups.google.com/d/msg/rubyonrails-talk/-/H7A-iifLvQ0J. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Aug 27, 4:03 pm, Me <chabg...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I have a new app using rails 3.1 and mongo_mapper, I cannot seem to get past > this when doing bundler: > > I have installed activesupport 3.0.0 with no avail. > > Bundler could not find compatible versions for gem "active support":Bundler is telling you that rails 3.1.0rc5 requires active support 3.1.0rc5, but that mongo_mapper requires active support 3.0.x, thus bundler can''t load a version of active support that will keep everyone happy. I''m sure the mongomapper guys will release a version with that version constraint relaxed, in the mean time you could fork the gem and make that change yourself (assuming that there is nothing in active support 3.1 that breaks mongomapper) Fred> In Gemfile: > mongo_mapper depends on > activesupport (~> 3.0.0) > > rails (= 3.1.0.rc5) depends on > activesupport (3.1.0.rc5)-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Ok, I was going to try mongo out. doh On Sat, Aug 27, 2011 at 10:44, Frederick Cheung <frederick.cheung-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>wrote:> > > On Aug 27, 4:03 pm, Me <chabg...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > I have a new app using rails 3.1 and mongo_mapper, I cannot seem to get > past > > this when doing bundler: > > > > I have installed activesupport 3.0.0 with no avail. > > > > Bundler could not find compatible versions for gem "active support": > > Bundler is telling you that rails 3.1.0rc5 requires active support > 3.1.0rc5, but that mongo_mapper requires active support 3.0.x, thus > bundler can''t load a version of active support that will keep everyone > happy. I''m sure the mongomapper guys will release a version with that > version constraint relaxed, in the mean time you could fork the gem > and make that change yourself (assuming that there is nothing in > active support 3.1 that breaks mongomapper) > > Fred > > > > In Gemfile: > > mongo_mapper depends on > > activesupport (~> 3.0.0) > > > > rails (= 3.1.0.rc5) depends on > > activesupport (3.1.0.rc5) > > -- > You received this message because you are subscribed to the Google Groups > "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at > http://groups.google.com/group/rubyonrails-talk?hl=en. > >-- *"In matters of style, swim with the current; in matters of principle, stand like a rock." Thomas Jefferson * -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.