Adding autogenerated plugin files
command: rails generate redmine_plugin body_tracking
This commit is contained in:
commit
94971489d1
3
README.rdoc
Normal file
3
README.rdoc
Normal file
@ -0,0 +1,3 @@
|
||||
= body_tracking
|
||||
|
||||
Description goes here
|
3
config/locales/en.yml
Normal file
3
config/locales/en.yml
Normal file
@ -0,0 +1,3 @@
|
||||
# English strings go here for Rails i18n
|
||||
en:
|
||||
# my_label: "My label"
|
2
config/routes.rb
Normal file
2
config/routes.rb
Normal file
@ -0,0 +1,2 @@
|
||||
# Plugin's routes
|
||||
# See: http://guides.rubyonrails.org/routing.html
|
8
init.rb
Normal file
8
init.rb
Normal 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
2
test/test_helper.rb
Normal file
@ -0,0 +1,2 @@
|
||||
# Load the Redmine helper
|
||||
require File.expand_path(File.dirname(__FILE__) + '/../../../test/test_helper')
|
Reference in New Issue
Block a user