日期:2014-05-16  浏览次数:20775 次

Global access to Rake DSL methods is deprecated.

碰到了这个问题,Google了一下,有好多人碰到,最快的解决方案是修改一下Rakefile文件,在倒数第二行加上

include Rake::DSL
?

另一种解决方案是将rake的版本降低为0.8.7(在Gemfile中添加? gem 'rake', '0.8.7')

?