Kirill Usanov

Results 7 issues of Kirill Usanov

Consider we have a parent model with uniqueness validation with scope: ```ruby class ParentModel < ActiveRecord::Base validates :column_1, uniqueness: { scope: :column_2 } end class ChildModel1 < ParentModel end class...

### Steps to reproduce ```ruby # config/initializers/doorkeeper.rb Doorkeeper.configure do access_grant_class "Oauth::AccessGrant" end # app/models/oauth/access_grant.rb require "doorkeeper/orm/active_record/mixins/access_grant" module Oauth class AccessGrant < ActiveRecord::Base include ::Doorkeeper::Orm::ActiveRecord::Mixins::AccessGrant end end ``` When starting application...

bug

### Configuration - Sorcery Version: `0.16.3` - Ruby Version: `3.1.2` - Framework: `Rails v7.0.3` - Platform: `amd64` ### Expected Behavior Doorkeeper `access_grant_class` configuration should work. ### Actual Behavior It raises...

bug

### Steps to reproduce Let's create some STI models. Base `Vehicle` and two childs `Car` and `Motorcycle`. ```ruby # models/vehicle.rb class Vehicle < ApplicationRecord TYPES = [Car, Motorcycle].freeze validates :color,...

activemodel

After upgrading Falcon from 0.43 to 0.44 this configuration: ```ruby # falcon.rb load :rack rack File.basename(__dir__) do endpoint do Async::HTTP::Endpoint.for(scheme, "0.0.0.0", port: Integer(3000), protocol: protocol) end count Integer(2) end ```...

When stopping the client its thread continues working for some time. This is not a problem in production, but in tests it is. Webmock removes its stub after the test,...