On 23 June 2013 00:41, John Merlino <[email protected]> wrote: > I installed spree by adding it in gemfile. It was giving me errors, so I > went to the github site, and installed spree using "gem install spree". But > now it looks like i have two sets of gems for the dependencies of spree: > > spree_api (2.0.3, 0.40.0) > spree_auth (0.40.0) > spree_backend (2.0.3) > spree_cmd (2.0.3) > spree_core (2.0.3, 0.40.0) > spree_dash (0.40.0) > spree_frontend (2.0.3) > spree_promo (0.40.0) > spree_sample (2.0.3, 0.40.0) > > > How do I uninstall spree and all of the gems that were installed along with > it?
No need, it does not matter if additional ones are installed. The versions defined in Gemfile and hence Gemfile.lock are the ones that will be used by the app. If you feel you must remove them however then [1] describes how to remove a particular version of a gem. [1] http://docs.rubygems.org/read/chapter/10#page38 Colin -- 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/CAL%3D0gLsrvSaoQbSs7Hmr3NG977t08TDjYnJswuuiUPAVpVw9CQ%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.

