forked from redmine-git-hosting/redmine_git_hosting
-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.rb
27 lines (23 loc) · 1 KB
/
init.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'redmine'
require 'redmine_git_hosting'
Redmine::Plugin.register :redmine_git_hosting do
name 'Redmine Git Hosting Plugin'
author 'A lot of people! A big thank to them for their contribution!'
description 'Enables Redmine to control hosting of Git repositories through Gitolite'
version '4.0.1'
url 'http://redmine-git-hosting.io/'
author_url 'settings/plugin/redmine_git_hosting/authors'
settings(partial: 'settings/redmine_git_hosting', default: RedmineGitHosting.settings)
requires_redmine version_or_higher: '4.0.3'
begin
requires_redmine_plugin :additionals, version_or_higher: '2.0.21'
rescue Redmine::PluginNotFound
raise 'Please install additionals plugin (https://github.com/alphanodes/additionals)'
end
end
# This *must stay after* Redmine::Plugin.register statement
# because it needs to access to plugin settings...
# so we need the plugin to be fully registered...
Rails.configuration.to_prepare do
require_dependency 'load_gitolite_hooks'
end