# # Create a link from inpath to outpath # class LinkedImageStrategy attr_reader :name def initialize( name ) @name = name end def build( inpath, outpath ) return if File.exist?( outpath ) ralbum_verbose( 1, "link " ) File.symlink( inpath, outpath ) end end