forked from jbbarth/redmine_watch_project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinit.rb
More file actions
15 lines (14 loc) · 645 Bytes
/
Copy pathinit.rb
File metadata and controls
15 lines (14 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Redmine::Plugin.register :redmine_watch_project do
name 'Redmine Watch Project plugin'
author 'Jean-Baptiste BARTH'
description 'This is a plugin for Redmine'
version '0.0.1'
url 'https://github.com/jbbarth/redmine_watch_project'
author_url 'jeanbaptiste.barth@gmail.com'
requires_redmine_plugin :redmine_base_rspec, :version_or_higher => '0.0.2' if Rails.env.test?
requires_redmine_plugin :redmine_base_deface, :version_or_higher => '0.0.1'
end
Rails.application.config.to_prepare do
require_dependency 'redmine_watch_project/issue_patch' unless Rails.env.test?
require_dependency 'redmine_watch_project/project_patch'
end