# File lib/ramaze/tool/project_creator.rb, line 68 def copy(from, to) return unless copy_check(to) puts "copy(%p, %p)" % [from, to] FileUtils.cp(from, to, :preserve => true) post_process(to) end