summaryrefslogtreecommitdiffstats
path: root/test/fixtures/plugins/redmine_test_plugin_bar/init.rb
blob: 5b1293ee467ab42ddf116d1c713850ce5ef2df3e (plain)
1
2
3
4
5
6
7
8
9
10
Redmine::Plugin.register :redmine_test_plugin_bar do
  name 'Test plugin redmine_test_plugin_bar'
  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