Tag: redmine

Redmine Email Keyword Cheatsheet

I use the IMAP email integration with Redmine all the time. It’s an easy way to send updates to Redmine’s issue tracker and I clients love using it. But I always forget what keywords I can use to update the issue. So I’d end up opening the documentation or the code and wasting a bunch …

Read more

Daily Refactor #81: Move last_invoice_number to Model

The Refactoring Today I used move method on the InvoiceController to move the #last_invoice_number to the Invoice model Before 1 2 3 4 5 6 7 8 class InvoiceController 'id DESC') unless last_invoice.nil? last_invoice.invoice_number else '-' end end endclass InvoiceController 'id DESC') unless last_invoice.nil? last_invoice.invoice_number else '-' end end end 1 2 3 class Invoice …

Read more

Daily Refactor #80: Convert PaymentsController to REST Controller

The Refactoring Following up on yesterday’s refactoring, today I converted the PaymentsController to a REST controller. Before 1 2 3 4 5 6 7 8 9 10 11 # config/routes.rb ActionController::Routing::Routes.draw do |map| map.resources(:invoice, :collection => { :autocreate => :get, :autofill => :get }, :member => { :outstanding => :get }) end# config/routes.rb ActionController::Routing::Routes.draw do …

Read more