1
0

Adding autogenerated plugin files

command: rails generate redmine_plugin body_tracking
This commit is contained in:
cryptogopher 2019-07-28 22:42:50 +02:00
commit 94971489d1
5 changed files with 18 additions and 0 deletions

3
README.rdoc Normal file
View File

@ -0,0 +1,3 @@
= body_tracking
Description goes here

3
config/locales/en.yml Normal file
View File

@ -0,0 +1,3 @@
# English strings go here for Rails i18n
en:
# my_label: "My label"

2
config/routes.rb Normal file
View File

@ -0,0 +1,2 @@
# Plugin's routes
# See: http://guides.rubyonrails.org/routing.html

8
init.rb Normal file
View File

@ -0,0 +1,8 @@
Redmine::Plugin.register :body_tracking do
name 'Body Tracking plugin'
author 'Author name'
description 'This is a plugin for Redmine'
version '0.0.1'
url 'http://example.com/path/to/plugin'
author_url 'http://example.com/about'
end

2
test/test_helper.rb Normal file
View File

@ -0,0 +1,2 @@
# Load the Redmine helper
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')