Redmine update 3.0.1

Redmine Update Great, there is a new Redmine 3.0.1 published! Changelog: http://www.redmine.org/projects/redmine/wiki/Changelog How to update: http://www.trianglesis.org.ua/update-redmine-2-6 (RU) Difficulties: http://www.trianglesis.org.ua/update-redmine-2-5-2 Bad Update https://www.redmine.org/boards/2/topics/46141?r=46253 Some plugins can produce error like: My lost plugins: redmine_digest global_roles redmine_ckeditor (update found) redmine_people hooks_manager redmine_issue_checklist (update found) Also it has another warning I can’t figure out still: [DEPRECATION] requiring “RMagick” is deprecated. Use “rmagick” instead If anybody can show me where does this require – I’ll change. But this is not urgent as I see.  Conclusion: This new Redmine 3 version is compatible only with itself – all needed plugins are lost and new versions work bad or lost at all. So I’ve revert it. You can update to 3 only if you use clean install. Read more…

Redmine, Rails, Gems – TOP comands

Устал постоянно гуглить те или иные частые команды для редмайна и его свиты, пришло время собрать их в одном месте и сохранить в закладки. Может кому-то еще пригодится. Будет обновляться, кто хочет может в комментах что-то свое добавить. Ruby ruby -v   Rails rails -v   Gems: gem list               Read more…

Rails update for Redmine

Как обнаружилось в предыдущей статье – у меня старые “рельсы” Теперь пришло время их обновить, если повезет, не обвалить рабочий сейчас редмайн. root@tet-redmine www/redmine# ruby -v ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux] root@tet-redmine www/redmine# gem -v 1.8.23 root@tet-redmine www/redmine# rails -v Rails 3.2.19 Хорошо сказано в статье: http://railsapps.github.io/updating-rails.html Don’t Just Update Rails Developers often install the newest version of Rails but neglect other components needed for Rails to run successfully. Rails is not just a Ruby gem, it is a complex and rapidly evolving ecosystem. It is important to set up your development environment with the most current version of all the gems that are needed for development. Сказать что я “обосрался” – ничего не сказать, надеюсь гайд поможет все расставитьShort Read more…

Redmine digest emails

Digest plugin Есть такой волшебный плагин, который в заданные промежутки времени может отправлять всем участникам дайджест по новостям и тикетам в редмайне: GitHub repository: github.com/drewkeller/redmine_digest The source of this plugin can be cloned from GitHub using: $ cd {RAILS_ROOT}/vendor/plugins git clone git://github.com/drewkeller/redmine_digest.git Сейчас буду возиться с кроном, чтобы добавить задание на рассылку дайджеста еженедельно. Вот что говорит его мануал: 1 0 * * 1-7 www-data cd /path/to/redmine && /usr/bin/rake redmine:send_digest start=1 days=1 project=myproject Rails.env=”production” Поменял под себя, проверил: root@tet-redmine ~# cd /var/www/redmine && /usr/bin/rake redmine:send_digest Rails.env=”production” -bash: /usr/bin/rake: No such file or directory Нужно запускать джоб от имени www-data в корне редмайновской папке + в корне “руби с рельсами” – только я забыл где у меня они. Мда… проверка простоShort Read more…