Tobias Bühlmann
Tobias Bühlmann
Using CanCan 1.6.10 and Rails 4, I stumbled over a weird issue. Short example: ``` ruby # ability.rb class Ability include CanCan::Ability def initialize(user) user ||= User.new(role: 'user') can :read,...
Autumn crashes on netsplits here. I'm using it with Daemons and it does not appear in the channels after the netsplit, but the process is still running. The Logs don't...
When preloading a `has_one` association that has a scope and providing `available_records` for the association, the `available_records` are ignored. ### Steps to reproduce ```ruby require 'bundler/inline' gemfile(false) do source 'https://rubygems.org'...
When deploying an application on a single host, we can't have multiple containers right now. Having this in config/deploy.yml: ```yml service: foo servers: web: hosts: - 1.2.3.4 cmd: bundle exec...
I started looking into having role aware container names but that turned out to be quite a big undertaking. So I started with destinations instead to see where it could...
Container names don't include their role (web, job, …), so there are naming collisions when the same service tries to run with different roles on the same host. See https://github.com/mrsked/mrsk/issues/44....
Traefik command options need to be passed as `--key=value`, not `--key value`. This will raise an error: ``` $ docker run traefik --entryPoints.web.address ":80" ``` This will not raise an...
Add some Wiki pages for built-in Filters covering usage. - [x] Association Embedder - [x] Association Includer - [x] Comparable - [x] Draper - [x] Equal - [x] Kaminari -...
Move stuff from https://github.com/tbuehlmann/ponder/blob/7af6ffcb53e364f9077e26b9bf28583403721e08/lib/ponder/irc.rb to the `User` and `Channel` classes.
Get MODEs after joining a channel. Adapt the `on :join` handler. Let's have two, one "raw" after joining and one "initialized" one for the moment we got the user list...