Robbe Van Petegem
Robbe Van Petegem
Hi @palkan Sorry for my late response. If I add the class as an argument, everything works as expected.
The `constantize` seems to be the source of the problem: ```rb сontroller_name: reports сontroller_name.classify: Report ``` But constantizing throws `uninitialized constant Report` since my model is also namespaced under the...
@drwl sure ``` class Post < ApplicationRecord belongs_to :theme belongs_to :user, optional: true has_one :theme_where_current_post, class_name: 'Theme', foreign_key: 'current_post_id', dependent: :nullify, inverse_of: :current_post has_many :comments, dependent: :destroy validates :content, presence:...
I was just playing around with some settings in `auto_annotate_models.rb` and it does work if I set `show_foreign_keys` to false. However the only common thing I can find is that...
I just tried this with a tauri app and `buildTauriPackage` worked fine. Is there anything I can do to help this move forward? There are a few details in the...
@manveru Any chance you could take a look at this? If a gem like irb gets updated now, this results in an unclear error `/nix/store/np0gx2m7xkxrvx3ack88bv1zlpkcrgw9-bundix-2.5.2/lib/ruby/gems/3.1.0/gems/bundix-2.5.0/lib/bundix/nixer.rb:100:in `serialize': Cannot convert to nix:...
I played around with toggling that one line, but the changes will have to be a bit more involved than that. If the original link elements aren't removed, I ran...
@peter-evans I just ran into this issue as well, while migrating some repositories from github to a private git server using forgejo. Would you be open for a input option...
I had this workaround in my flake, but just noticed that crane was giving the following warning: ``` evaluation warning: crane requires at least nixpkgs-25.05, supplied nixpkgs-24.11 ``` I just...