module Fx::CommandRecorder::Function

@api private

Public Instance Methods

create_function(*args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 5
def create_function(*args)
  record(:create_function, args)
end
drop_function(*args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 9
def drop_function(*args)
  record(:drop_function, args)
end
invert_create_function(args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 17
def invert_create_function(args)
  [:drop_function, args]
end
invert_drop_function(args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 21
def invert_drop_function(args)
  perform_inversion(:create_function, args)
end
invert_update_function(args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 25
def invert_update_function(args)
  perform_inversion(:update_function, args)
end
update_function(*args) click to toggle source
# File lib/fx/command_recorder/function.rb, line 13
def update_function(*args)
  record(:update_function, args)
end