class Recode::Handler::Apply

Public Instance Methods

edit(file:, before:, after:) click to toggle source
Calls superclass method
# File lib/recode/handler/apply.rb, line 9
def edit(file:, before:, after:)
  super
  save_file file, after
end
rename(source:, target:) click to toggle source
Calls superclass method
# File lib/recode/handler/apply.rb, line 4
def rename(source:, target:)
  super
  rename_file source, target
end