2

im a noob. i need help.

im trying to install Redmine CRM plugin however im getting an error when i run this:

bundle install --without development test

it says:

Bundler could not find compatible versions for gem "i18n":
  In Gemfile:
    rails (= 4.2.0) ruby depends on
      railties (= 4.2.0) ruby depends on
        activesupport (= 4.2.0) ruby depends on
          i18n (~> 0.7) ruby

    money (~> 5.1.0) ruby depends on
      i18n (~> 0.6.0) ruby
alfonx
  • 6,936
  • 2
  • 49
  • 58
mawz
  • 43
  • 1
  • 7

2 Answers2

2

Redmine CRM plugin has to be upgraded to newer versions of redmine in parallel. I recommend to upgrade redmine first (with an empty plugins directory) and then add the redminecrm plugins and upgrade them too.

Redmine CRM Plugin 4.0.3 is compatible with Redmine 2.6-3.1 Older versions of the Redmine CRM Plugin installed on Redmine 3.1 result in the error you posted.

alfonx
  • 6,936
  • 2
  • 49
  • 58
0

In your Gemfile, manually specify I18n gem like

gem 'I18n', '~0.6.0'
Shahzad Tariq
  • 2,767
  • 1
  • 22
  • 31
  • sorry i get a bit confused. which Gemfile? here is the path of my redmine: /var/www/redmine and the path of the plugin im trying to install: /var/www/redmine/plugins/redmine_contacts/ both has Gemfile – mawz May 13 '15 at 06:19
  • In your plugin Gemfile – Shahzad Tariq May 13 '15 at 06:21
  • i added 'gem 'I18n', '~0.6.0' but i get an error **There was an error in your Gemfile, and Bundler cannot continue.** – mawz May 13 '15 at 06:49