class Rung::Operation
Public Class Methods
call(initial_state = {})
click to toggle source
# File lib/rung/operation.rb, line 6 def self.call(initial_state = {}) new.call(initial_state) end
Public Instance Methods
call(initial_state = {})
click to toggle source
# File lib/rung/operation.rb, line 10 def call(initial_state = {}) Runner::Runner.new(self, initial_state).call end