Category: Articles

Redmine Set Up Service Launched

I’ve been a member of the Redmine community for a few years now. One common problem that comes up time and time again is setting up Redmine. Starting today, Little Stream Software will be offering a Redmine Set Up Service. If you or someone you know is struggling to get Redmine set up… let me …

Read more

Daily Refactor #43: Extract Method in StuffToDoController

The Refactoring Today I used extract method to start cleaning up the new TimeGrid code I recently merged into the StuffToDo plugin. Before 1 2 3 4 5 # app/controllers/stuff_to_do_controller.rb class StuffToDoController "#{Issue.table_name}.id ASC") @time_entry = TimeEntry.new end end# app/controllers/stuff_to_do_controller.rb class StuffToDoController "#{Issue.table_name}.id ASC") @time_entry = TimeEntry.new end end After 1 2 3 4 5 …

Read more