mirror of
https://github.com/redmine/redmine.git
synced 2025-11-08 22:36:02 +01:00
11 lines
271 B
Ruby
11 lines
271 B
Ruby
|
|
Redmine::Plugin.register :redmine_test_plugin_foo do
|
||
|
|
name 'Test plugin redmine_test_plugin_foo'
|
||
|
|
author 'Author name'
|
||
|
|
description 'This is a plugin for Redmine test'
|
||
|
|
version '0.0.1'
|
||
|
|
end
|
||
|
|
|
||
|
|
Pathname(__dir__).glob("app/**/*.rb").sort.each do |path|
|
||
|
|
require path
|
||
|
|
end
|