David Stosik
David Stosik
I was looking for this too. What I ended up doing is simply sourcing the theme file after I initialized antigen: ``` # snip antigen init ./antigenrc source ./sto.zsh-theme #...
Moved my comment [here](https://github.com/rileytestut/Delta/issues/273#issuecomment-2063431764).
Hi there! I just found this issue, more recent than the previous one I commented on, so please allow me to add my report here too. I'm also having problems...
:+1: It would be nice to have different scopes for different actions, such as: - Users I'm allowed to see - Users I'm allowed to manage (me only, unless I'm...
Here's an idea: implement a "recursive" `tagged` method in `BroadcastLogger`: ```rb module ActiveSupport class BroadcastLogger # ... def tagged(*tags, &block) if block_given? recursive_tagged(broadcasts, *tags, &block) else loggers = broadcasts.map do...
For the record, I tried a brand new Rails 7.1.1 application: ```sh rails new testlog --minimal cd testlog vim config/environments/development.rb ``` Add this: ```rb loggers = [ STDOUT, "log/development.log", ].map...
Here's an executable test case reproducing the error I described manually in my previous comment. ```rb # frozen_string_literal: true require "bundler/inline" gemfile(true) do source "https://rubygems.org" gem "rails", github: "rails/rails", branch:...
@Edouard-chin Hi there! 👋🏻 Just a quick comment to mention that I noticed around the end of my day earlier, that `#silence` will have the same issues as `#tagged`. Might...
Hello @aogata-inst! 👋🏻 That is an interesting idea. In order to add some context to your issue, can I ask exactly why you needed that? Are you currently running your...
Hmm. My personal opinion is that I'd rather have a single `Gemfile.lock` that'll track gem updates over time, rather than having to start from a fresh file with no git...