module SuperInteraction::BeyondHelper

Public Instance Methods

srj() { |i| ... } click to toggle source
# File lib/super_interaction/beyond_helper.rb, line 3
def srj(&block)
  i = Beyond.new(self)
  if block_given?
    yield(i)
    i.run
  else
    i
  end
end