# File lib/compass/actions.rb, line 11 def copy(from, to, options = nil, binary = false) options ||= self.options if self.respond_to?(:options) contents = File.new(from).read write_file to, contents, options, binary end