module Pakyow::Application::Behavior::Operations
Adds support for operations.
Public Instance Methods
make(*)
click to toggle source
Define operations as stateful when an app is defined.
@api private
Calls superclass method
# File lib/pakyow/application/behavior/operations.rb, line 40 def make(*) super.tap do |new_class| new_class.stateful :operation, Operation end end