I’ve just uploaded the latest release of the Redmine System Notification plugin. This is a plugin that will let Administrators send emails to a list of users to let them know of important events (e.g. downtime, upgrades). This release includes some new features for composing the notification, translations, and support for the latest stable and …
Tag: ruby on rails
Customer plugin v0.2.0 released
After a long wait, I’ve just uploaded a new release of the Redmine Customer plugin. This is a bug fix and translation release that should support the released version of Redmine as well as the latest trunk version. Download The plugin can be download from the Little Stream Software project or from GitHub. Changes Feature …
Create a link inside a Redmine hook
I was recently asked how do create a link in a Redmine plugin hook. The answer is you can use the Ruby on Rails helper link_to but you need a few additional fields for Rails to know where to link to. The standard link_to will generate an ActionView::TemplateError: 1 2 3 4 link_to("My Link", { …
Redmine Railroaded – Model and Controller diagrams
With large systems, it’s useful to be able to visualize the relationships between the different components and systems. Redmine is no exception, weighing in at a hefty 286 classes and almost 14,000 lines of application code. The RailRoad gem aims to help automate the generation of Ruby on Rails class diagrams, showing methods and fields …
All aboard!! Now Phusion Passenger powered
A few days ago I converted my Ruby on Rails server to run Phusion Passenger. I’ve been running nginx and mongrels for about a year now and they have served me well (no pun intended). The only problem is my RAM been maxing out, but I guess that happens with 5 mongrels, a sinatra app, …