class FromTo

Source and destination classes for file

Attributes

after_save_procs[RW]
from[RW]
to[RW]

Public Class Methods

new(from, to) click to toggle source
# File lib/classifile/from_to.rb, line 8
def initialize(from, to)
  @from = from
  @to = to
  @after_save_procs = []
end