Skip to content

Commit eef20ee

Browse files
authored
Fix compatibility with Redmine 3.3
This fixes the following error: ``` $ bundle install Your Gemfile lists the gem redcarpet (~> 3.3.2) more than once. You should probably keep only one of them. While it's not a problem now, it could cause errors if you change the version of one of them later. [!] There was an error parsing `Gemfile`: [!] There was an error parsing `Gemfile`: You cannot specify the same gem twice with different version requirements. You specified: rdoc (~> 4.3) and rdoc (>= 0). Bundler cannot continue. # from /srv/redmine/redmine-3.3/plugins/redmine_git_hosting/Gemfile:31 # ------------------------------------------- # gem 'asciidoctor' > gem 'rdoc' # # ------------------------------------------- . Bundler cannot continue. # from /srv/redmine/redmine-3.3/Gemfile:118 # ------------------------------------------- # Dir.glob File.expand_path("../plugins/*/{Gemfile,PluginGemfile}", __FILE__) do |file| > eval_gemfile file # end # ------------------------------------------- ```
1 parent 348d924 commit eef20ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Gemfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ gem 'org-ruby'
2828
gem 'creole'
2929
# gem 'wikicloth'
3030
gem 'asciidoctor'
31-
gem 'rdoc'
31+
gem 'rdoc', "~> 4.3"
3232

3333
# Rack parser for Hrack
3434
gem 'rack-parser', require: 'rack/parser'

0 commit comments

Comments
 (0)