Returns a new instance of Convert.
Yields:
Yield Parameters:
the object that the method was called on
12 13 14 15 16 17
# File 'lib/rscale/processor.rb', line 12 def initialize(file_from, file_to) @file_from = File.expand_path(file_from) @file_to = File.expand_path(file_to) @options = [] yield self if block_given? end