Tag: redmine

Redmine Consulting Service Launched

I have just launched a private Redmine consulting service. This is a private one on one service for clients who want to dig into Redmine deeply to make it work. It’s also for developers who are wanting to get started with Redmine development (open source or freelance) but need some guidance.

Read more

Daily Refactor #54: Move Method to KanbanPane

The Refactoring Today I did another simple refactoring by moving a method from Kanban to KanbanPane. Before 1 2 3 4 5 6 7 8 9 10 11 12 # app/models/kanban.rb class Kanban # Sort and group a set of issues based on IssuePriority#position def group_by_priority_position(issues) return issues.group_by {|issue| issue.priority }.sort {|a,b| a[0].position b[0].position } …

Read more