class LoveLetterApplication::Results::YieldToBlock
Public Instance Methods
call(**args) { |**args| ... }
click to toggle source
# File lib/love_letter_application/results/yield_to_block.rb, line 6 def call(**args, &block) yield(**args) if block_given? end