19 lines
626 B
Ruby
19 lines
626 B
Ruby
require 'redmine'
|
|
|
|
# TODO: why isn't this autoloaded?
|
|
# NB: at this point, $PATH only contains {PLUGINS}/lib and app/models, app/controllers
|
|
# but not {PLUGINS}/app/models. Maybe those get added later?
|
|
require File.dirname(__FILE__) + '/app/models/repository/git_remote'
|
|
|
|
require_dependency "repository_fetch/repositories_helper_patch"
|
|
|
|
Redmine::Scm::Base.add "GitRemote"
|
|
|
|
Redmine::Plugin.register :redmine_git_remote do
|
|
name 'Repository Fetch'
|
|
author 'Alex Dergachev'
|
|
url 'https://github.com/dergachev/redmine_git_remote'
|
|
description 'Automatically clone and fetch remote git repositories'
|
|
version '0.0.1'
|
|
end
|