Sunny Ripert
Sunny Ripert
Great thorough article! I’ve added it to the list of resources on [the wiki](https://github.com/sunny/actor/wiki)
I’m closing this issue, but feel free to discuss/reopen if you think of a better way to handle this.
Hi there! I’m afraid there’s currently no built-in instrumentation or hooks. You could try and override the `_call` method on actors. But, as its name suggests, it’s an internal API,...
Perhaps the `ActiveSupport::Notifications.instrument` call you have could be added directly to `ServiceActor::Base` inside the [service_actor-rails](https://github.com/sunny/actor-rails/) gem so that you don’t have to rely on an internal method. Would you be...
I think it’s fine for `actor-rails` to use `actor`’s internal `_call` method. Although they are two different gems, their develpment is tightly linked so it’s much less of an issue...
A good way to do this is to change the default `new` to something you can translate. ``` localized do resources :categories, path_names: { new: "new_category" } end ``` In...
@curtis are you still maintaining this gem? 🙏🏻
Sure, I can help!
I am guessing that those introspection methods are called by test-tooling like RSpec to build test doubles.