我刚刚将一个项目升级到
Ruby 1.9.2,并且以下行使用’undefined method`copy’为File:Class’
File.copy(animage.image.path(:export),destfile)
我在此模块中加载了以下库
require 'zip/zipfilesystem' require 'iconv' require 'net/ftp' require 'fileutils'
解决方法
它实际上应该是FileUtils.copy或FileUtils.cp.我不知道你的旧项目如何使用File.copy,因为File没有这种方法.
请参考:http://santoro.tk/mirror/ruby-core/classes/FileUtils.html#M004325