33
34
35
36
37
38
39
40
41
42
|
# File 'lib/lib/coopy/compare_table.rb', line 33
def align
while(!@comp.completed)
self.run
end
alignment = ::Coopy::Alignment.new
self.align_core(alignment)
alignment.comp = @comp
@comp.alignment = alignment
alignment
end
|