I use my simple Emacs Todo mode to keep track of my todo items but one thing that I’ve been missing has been recurring tasks. A calendar with recurring events works okay but I still have to remember to copy them into my todo list or I forget about them. So tonight I whipped up …
Tag: ruby
Redmine Rate 0.2.1 Released
A bug fix update to my Redmine Rate plugin has just been released. It includes an important bug fix for the caching system. This version requires at least Redmine 1.0.0 and is compatible with Redmine 1.0.x, 1.1.0, 1.1.1, and ChiliProject 1.x. Changes Bug #5793 Cost cache not getting cleared when Time Entry attributes change Download …
Redmine Rate 0.2.0 Released
An update to my Redmine Rate plugin has just been released. It includes several bug fixes and a new caching system. This version requires at least Redmine 1.0.0 and is compatible with Redmine 1.0.x, 1.1.0, 1.1.1, and ChiliProject 1.x. Changes Feature #2433 French translation Feature #2664 Russian localization Feature #3832 rate_users_helper_patch extending InstanceMethods Feature #4289 …
Redmine API: Adding Key Authentication for Issues#create
Now that I’ve tested #index and #show for #6447, it’s time to see if #create is working. Updating the Issues#create test The first thing I need to do is to update the tests for #create to see if I can reproduce any authentication bugs. With a few tweaks to my shoulda macros, I added tests …
Redmine API: Changing API Tests for Issues #index and #show
Now that I’ve built up a few shoulda helpers for testing the different authentication APIs in Redmine, I can now start testing the actual bug reported. Creating a standard test macro for all APIs The first thing I did was to create a standard test macro for all of the different API authentication types. Otherwise …