Anton Katunin
Anton Katunin
@laymonage thank you for looking into that so quickly. > This means that you should be able to use the "specific discussion number" mapping for the time being. I can...
I experienced that limitation myself as well. Callbacks could be an alternative, however there are no callbacks when form object is used in `new` and `edit` controller actions to render...
Another option is to have a generic option for all filters to manipulate data. That overlaps a little bit with `ObjectFilter` `converter` option. ```ruby class Task < ActiveInteraction::Base time :start,...
Personally I don't like the current implementation of Rspec helpers and would like to rewrite them. Contributions are welcomed.
> Before producing a PR, I'd like to confirm that the expected behaviour is that the delay methods also stub the instance so the execute method isn't run. Yes, looking...
> Or i just did something wrong :) Yes, you are correct, that's what I observe too. I didn't get to the bottom of it, so I'm just always passing...
Update. `fields_for`is looking for a specific interface on the object which is implemented by `accepts_nested_attributes_for` in `ActiveRecord::NestedAttributes::ClassMethods`. Specifically methods - `#{association}_attributes=` and - `association` I've started implementing `accepts_nested_attributes_for` extension for...
it seems like magic attributes are not stored in meta data file
I did want to implement crop processor, which would automatically fetch crop sizes from the model and use those in cropping. After i've failed to make use of metadata I've...
Good find. We potentially could use `Interrupt`, there are two parts that concern me: - exceptions shouldn't be used for control flow, as they are slower - my understanding getting...