Shaun Carlson

Results 5 issues of Shaun Carlson

We're running into an issue at the interface between postgresql-jdbc and arjdbc. We're running JRuby (versions 9.2.6.0, 9.2.7.0, 9.2.9.0) and Rails 5.2 with arjdbc 52.6. Frustratingly the error (stack trace...

Protobuf issues a deprecation warning about setting the `nullify` field to `nil` and instead suggests using an empty array: ``` DEPRECATION WARNING: ['nullify']=nil is deprecated and will be removed from...

If using an ActiveRemote object in a form and using `form_for` in Rails for the model, ActiveRemote causes an `undefined method 'guid' for` error to be raised.

Fixes https://github.com/AaronLasseigne/active_interaction/issues/574 In my first example from that issue, the problem is that in the overridden `run_validations!` method, it doesn't end by calling `errors.empty?` [the way that the Rails Validations...

Given the following interaction, I would expect behavior around validations to be: ```ruby class Foo < ::ActiveInteractin::Base string :bar validates :bar, presence: true end x = Foo.new x.valid? == false...