Redmine is a flexible project management web application written using Ruby on Rails framework.
Questions tagged [redmine-plugins]
377 questions
18
votes
3 answers
Good documentation for writing Redmine plugins
I am currently developing some plugins for Redmine, and I must say, I'm a bit disappointed with the lack of documentation available on this subject.
Normally, If I am looking for explanations on classes/methods, I need to spend a consistent amount…

Rails Rider
- 183
- 1
- 4
18
votes
2 answers
How can I integrate Jenkins with Redmine?
I would like to integrate Jenkins with Redmine. If some build breaks, Jenkins would open an issue in Redmine to notify it with the console output.
How can I do it? Are there any plugins? Are there any implementation guides? I couldn't find a…

dextervip
- 4,999
- 16
- 65
- 93
15
votes
3 answers
Install redmine plug-in using docker container
I am able to install redmine using these 2 commands.
docker run --name myred1 -e MYSQL_ROOT_PASSWORD=india -e MYSQL_DATABASE=redmine -v /my/custom:/etc/mysql/conf.d -v /storage/mysql/datadir:/var/lib/mysql -d mysql:5.6
docker run --name abt -p…

shantanuo
- 31,689
- 78
- 245
- 403
11
votes
4 answers
Any way to quickly (drag and drop) reorder tasks in Redmine?
We're using Redmine to log and track all of our tasks, bugs, and features. We have a one month release cycle and it's important to ensure that the order of the items in Redmine corresponds to the relative priority of each item, so that people are…

M.A.X
- 221
- 3
- 7
11
votes
2 answers
Netbeans and Redmine integration
Has anyone been able to successfully integrate netbeans with Redmine since the new rest API for Redmine has been released?
I have read a handful of articles written a while ago that suggest this new API will be the solution to the integration woes…

Toby
- 8,483
- 13
- 45
- 68
9
votes
3 answers
Error installing holidays gem
I'm receiving the following error when trying to install the holidays gem:
# gem install holidays
Fetching: holidays-1.0.4.gem (100%)
ERROR: Error installing holidays:
holidays requires holidays (>= 0)
I'm not a ruby guy, just installing…

rsilva4
- 1,915
- 1
- 23
- 39
9
votes
1 answer
Merging issues in Redmine
An interesting feature in Redmine was the possibility to merge two or more issues into one new issue.
This feature was asked to development team but still isn't available.
Someone can help me with a workaround to implement this functionality?

Jorge
- 91
- 1
- 2
9
votes
2 answers
Is there a redmine plugin to create multiple issues at once?
Redmine has a nice batch edit feature, but nothing equivalent for "batch create" (please correct me if I'm wrong!)
FogBugz lets you quickly create multiple tickets with the same properties (type, status, assignment, etc.) via a ajax-ified text box…

Jerph
- 4,572
- 3
- 42
- 41
7
votes
1 answer
You cannot specify the same gem twice with different version requirements
I have 2 plugins installed(redmine_backlogs and redmine_ldap_sync), but after upgrade of redmine_ldap_sync from 2.0.0 to 2.0.1 a Gemfile was added.
Here the backlogs's Gemfile https://github.com/backlogs/redmine_backlogs/blob/v1.0.2/Gemfile
and ldap…

Robinho
- 1,011
- 2
- 10
- 17
7
votes
2 answers
uninitialized constant RAILS_DEFAULT_LOGGER
I'm trying to install a plugin in redmine, mylyn.
I get the following error:
uninitialized constant RAILS_DEFAULT_LOGGER
0 /home/redmine/plugins/redmine-plugin/init.rb 3
1 /home/redmine/lib/redmine/plugin.rb 129 in `load'
…

Falci
- 1,823
- 4
- 29
- 54
7
votes
1 answer
Send email from Redmine Plugin
I am writing a Redmine plugin. I already have the model, view and controller in place.
Whenever someone creates, updates or deletes my model I want to send an email to people in a certain group. (Similar to emails sent out by Redmine when someone…

AAK
- 439
- 4
- 11
6
votes
3 answers
Has anyone successfully integrated chat with redmine?
I was thinking that it would be cool if I could have a chat app as part of the interface for my Redmine installation. I did find a plugin that works with Juggernaut but it seems a while since there has been any downloads or updates of it and I'm…

Zac
- 12,637
- 21
- 74
- 122
6
votes
1 answer
How to correctly instantiate a model in plugin init.rb?
How do you correctly initialize Redmine plugins that need to instantiate a model (read a database record) defined in the plugin itself?
For example, I have a plugin my_redmine_plugin which comes with a model MyPluginModel. On plugin initialization,…

Michael Krupp
- 2,042
- 3
- 19
- 36
6
votes
1 answer
Redmine plugin view hook refresh when issues change
I wrote a plugin that grabs latest issues and displays them on the home page. All seems to work pretty well, but it only works the first time I restart the server to run it - after that it 'caches' the issues from that time, and no new ones get…

Kasia Gogolek
- 3,374
- 4
- 33
- 50
5
votes
1 answer
Redmine :Multiple repositories in a project
Two questions actually
1) Have anyone accomplished setting up multiple repositories in a project or linking commits to repos across projects.
2) Issues referring to commit messages across projects and vice-verca
I was successful in hacking Redmine…

sri
- 359
- 4
- 10