# File lib/homesick/utils.rb, line 151 def collision_accepted?(destination, source) fail "Arguments must be instances of Pathname, #{destination.class.name} and #{source.class.name} given" unless destination.instance_of?(Pathname) && source.instance_of?(Pathname) options[:force] || shell.file_collision(destination) { source } end