Markus
Markus
Version: 1.5 Without polymorphic association, I can do: ```rb belongs_to( :event, id_method_name: :event_uuid, ) ``` It correctly uses `event_uuid` as the method to get the id of the association. With...
Useful for includes and inheritance: ```rb module SomeModule extend ActiveSupport::Concern included do meta do { module_meta: true } end end end class UserSerializer include FastJsonapi::ObjectSerializer include SomeModule meta do {...
fixes #382 This is more or less a WIP to see what you guys say about this. Some remarks: - There could be a short cut to *not* fetch the...
Since Rails 5.2, it is possible to use cache versioning, see https://api.rubyonrails.org/classes/ActiveRecord/Integration.html This means, that `cache_key` does not include a timestamp, but `cache_version`. Additionally, Rails provides `cache_key_with_version` (which is like...
Adding the squeel gem in Rails 4.2.0.rc2 and trying a basic find yields this: ``` [2] pry(main)> Task.find(1) ArgumentError: wrong number of arguments (2 for 1) from .../vendor/bundle/ruby/2.1.0/gems/activerecord-4.2.0.rc2/lib/active_record/relation/query_methods.rb:964:in `create_binds' ```...
This was originally posted at webpacker https://github.com/rails/webpacker/issues/785. Using rails-erb-loader@^5.2.1 and webpacker gem 3.0.1, rails 5.1.4 and spring 2.0.2. I've the problem that in my current project, webpack-dev-server hangs when first...
This makes no sense and might actually do something unintended if done by accident, e.g. truncating the source if run with `--truncate`.
I noticed those three settings and cannot make out what they mean: `noPP`, `vacHigh` and `schedHold`. `vacHigh` I assumed to be something to wether to go constantly on full power...
I've the following problem where I cannot encode some chunks. Input is a 4K 50fps HDR video of a camcorder. This is my av1an command line: > av1an -i input.mp4...
### Steps to reproduce With `query_constraints: []` one can create a custom query for an association, for example: ```ruby class BodyPart < ActiveRecord::Base end class Human < ActiveRecord::Base has_many :body_parts,...