You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I tried to install the plugin I got the following errors:
( I am on redmine 2.6.0-3 using Bitnami )
The error:
You are trying to install in deployment mode after changing
your Gemfile. Run `bundle install` elsewhere and add the
updated Gemfile.lock to version control.
If this is a development machine, remove the Gemfile freeze
by running `bundle install --no-deployment`.
You have added to the Gemfile:
* source: rubygems repository http://rubygems.org/, https://rubygems.org/
* roo
* iconv
* spreadsheet (~> 0.9.7)
* simplecov
* simplecov-rcov
* oauth2
* json
You have deleted from the Gemfile:
* source: rubygems repository https://rubygems.org/
Please advice
The text was updated successfully, but these errors were encountered:
Note that only two gems are added through the plugin:
oauth2
json
It looks that other gems come from another plugins
According to documentation you should run bundle install after you cloning the plugin. This should be done on server without using flag --deployment. Additionally you can setup skipped group (for example development, test) (official doc see section "Step 4 - Dependencies installation")
bundle install --without development test
Explanation:
Redmine has own Gemfile. And Redmine allows plugins to add another gems. But the problem is that file Gemfile.lock is in gitignore. When you run bundle install --deployment bundle "Requires an up-to-date Gemfile.lock" (see this)
I want to request change the source URL in Gemfile to https://rubygems.org instead of http://rubygems.org.
In Gemfile of redmine-3.5, the gem source is set as 'source 'https://rubygems.org' . But in redmine_omniauth_google, the gem source is set as source 'http://rubygems.org'.
When I tried to install the plugin I got the following errors:
( I am on redmine 2.6.0-3 using Bitnami )
The error:
Please advice
The text was updated successfully, but these errors were encountered: