Run FixSchedulesWorker daily at 6AM instead of 5AM.
This way this scheduling does not clash with the automated sidekiq restart that happens at 5AM. This fixes a bug: FixSchedulesWorker was often not running at the scheduled time.
View ArticleMerge pull request #13 from yogodoshi/update-gems-with-vulnerabilities
Update nokogiri and devise gems because of vulnerabilities
View ArticleUpdated devise gem 3.5.4 -> 3.5.5
The "remember me" feature works again, it seems it got broken in 3.5.4
View ArticleUpdated ox gem 2.2.2 -> 2.2.3
Supposedly it fixes some errors in ruby 2.3.0. I'm running ruby 2.3.0 with ox 2.2.2 and I haven't seen any such failures, but better be safe than sorry I suppose.
View ArticleFixed declarations of private class methods.
In ruby, defining class methods after a "private" line does not work, it only works for instance methods. Marking class methods as private is a bit more complex and there are several possible...
View ArticleAdd back "self" in FileClient.
It is not strictly necessary but it makes the intent of the code more clear.
View ArticleWhen calling a private class method from the same class, do it without an exp...
Private functions, either class or instance level, cannot be called with an explicit receiver, not even "self". They must be called without an explicit receiver, which uses the implicit "self"...
View ArticleFix displaying the number of unread entries in the favicon for Chrome.
Currently favico.js has a bug which only updates the last element with rel="icon" if there are several in the page head. This maeans that the favicon must be last in the head, particularly it must...
View Article