Skip to content

Commit 52d4a3d

Browse files
committed
Publish on Github
Signed-off-by: Daniel Kastl <daniel@georepublic.de>
1 parent e9ac4f8 commit 52d4a3d

File tree

4 files changed

+72
-12
lines changed

4 files changed

+72
-12
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# editorconfig.org
2+
root = true
3+
4+
[*]
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
charset = utf-8
9+
trim_trailing_whitespace = true
10+
insert_final_newline = true

LICENSE

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
GNU GENERAL PUBLIC LICENSE
22
Version 3, 29 June 2007
33

4-
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
4+
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
55
Everyone is permitted to copy and distribute verbatim copies
66
of this license document, but changing it is not allowed.
77

@@ -631,8 +631,8 @@ to attach them to the start of each source file to most effectively
631631
state the exclusion of warranty; and each file should have at least
632632
the "copyright" line and a pointer to where the full notice is found.
633633

634-
redmine_decision_tree
635-
Copyright (C) 2020 GTT
634+
<one line to give the program's name and a brief idea of what it does.>
635+
Copyright (C) <year> <name of author>
636636

637637
This program is free software: you can redistribute it and/or modify
638638
it under the terms of the GNU General Public License as published by
@@ -645,14 +645,14 @@ the "copyright" line and a pointer to where the full notice is found.
645645
GNU General Public License for more details.
646646

647647
You should have received a copy of the GNU General Public License
648-
along with this program. If not, see <http://www.gnu.org/licenses/>.
648+
along with this program. If not, see <https://www.gnu.org/licenses/>.
649649

650650
Also add information on how to contact you by electronic and paper mail.
651651

652652
If the program does terminal interaction, make it output a short
653653
notice like this when it starts in an interactive mode:
654654

655-
redmine_decision_tree Copyright (C) 2020 GTT
655+
<program> Copyright (C) <year> <name of author>
656656
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
657657
This is free software, and you are welcome to redistribute it
658658
under certain conditions; type `show c' for details.
@@ -664,11 +664,11 @@ might be different; for a GUI interface, you would use an "about box".
664664
You should also get your employer (if you work as a programmer) or school,
665665
if any, to sign a "copyright disclaimer" for the program, if necessary.
666666
For more information on this, and how to apply and follow the GNU GPL, see
667-
<http://www.gnu.org/licenses/>.
667+
<https://www.gnu.org/licenses/>.
668668

669669
The GNU General Public License does not permit incorporating your program
670670
into proprietary programs. If your program is a subroutine library, you
671671
may consider it more useful to permit linking proprietary applications with
672672
the library. If this is what you want to do, use the GNU Lesser General
673673
Public License instead of this License. But first, please read
674-
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
674+
<https://www.gnu.org/licenses/why-not-lgpl.html>.

README.md

Lines changed: 51 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,51 @@
1-
Adds decision-tree wizards to custom fields
1+
# Redmine Decision Tree Plugin
2+
3+
Redmine plugin that adds decision-tree wizards to custom fields.
4+
5+
## Requirements
6+
7+
- Redmine >= 3.4.0
8+
9+
## Installation
10+
11+
To install Redmine Chatwoot plugin, download or clone this repository in your Redmine installation plugins directory!
12+
13+
```
14+
cd path/to/plugin/directory
15+
git clone https://github.com/gtt-project/redmine_decision_tree.git
16+
```
17+
18+
Then run
19+
20+
```
21+
bundle install
22+
bundle exec rake redmine:plugins:migrate
23+
```
24+
25+
After restarting Redmine, you should be able to see the Redmine Chatwoot plugin in the Plugins page.
26+
27+
More information on installing (and uninstalling) Redmine plugins can be found here: http://www.redmine.org/wiki/redmine/Plugins
28+
29+
## How to use
30+
31+
TBD
32+
33+
## Contributing and Support
34+
35+
The GTT Project appreciates any [contributions](https://github.com/gtt-project/.github/blob/main/CONTRIBUTING.md)! Feel free to contact us for [reporting problems and support](https://github.com/gtt-project/.github/blob/main/CONTRIBUTING.md).
36+
37+
## Version History
38+
39+
See [all releases](https://github.com/gtt-project/redmine_decision_tree/releases) with release notes.
40+
41+
## Authors
42+
43+
- [Jens Kraemer](https://github.com/jkraemer)
44+
- [Daniel Kastl](https://github.com/dkastl)
45+
- [Thibault Mutabazi](https://github.com/eyewritecode)
46+
- [Ko Nagase](https://github.com/sanak)
47+
- ... [and others](https://github.com/gtt-project/redmine_decision_tree/graphs/contributors)
48+
49+
## LICENSE
50+
51+
This program is free software. See [LICENSE](LICENSE) for more information.

init.rb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
Redmine::Plugin.register :redmine_decision_tree do
44
name 'Redmine Decision Tree plugin'
5-
author 'Jens Kraemer, Georepublic'
6-
author_url 'https://hub.georepublic.net/gtt/redmine_decision_tree'
5+
author 'Jens Krämer, Georepublic'
6+
author_url 'https://github.com/georepublic'
7+
url 'https://github.com/gtt-project/redmine_decision_tree'
78
description 'Adds decision-tree wizards to custom fields'
8-
version '0.1.0'
9+
version '1.3.0'
910

1011
requires_redmine version_or_higher: '3.4.0'
1112

@@ -14,4 +15,3 @@
1415
ActiveSupport::Reloader.to_prepare do
1516
RedmineDecisionTree.setup
1617
end
17-

0 commit comments

Comments
 (0)