up vote 2 down vote favorite
share [g+] share [fb]

Is there any solution to solve the problem of rake task rails:upgrade:check on windows ?

link|improve this question

79% accept rate
you'll have to be more specific – marcgg Sep 3 '10 at 13:40
yeah we need the full backtrace on this one (run rake with --trace or --backtrace or something) – rogerdpack Sep 3 '10 at 16:35
@rogerdpack i have edited my post ... – krunal shah Sep 3 '10 at 17:43
feedback

1 Answer

up vote 2 down vote accepted

To solve out this problem i have install this gems.

gem install POpen4 -v 0.1.4
gem install win32-open3
gem install rak

Then modify rails_upgrade plugin file.

vendor/rails_upgrade/lib/application_checker.rb

In that file replace find_with_rake method with this lines .

def find_with_rak(text, where, double_quote)
    value = ""
    %x[rak '#{Regexp.escape(text)}' #{where}].each do |f|
      value << f
    end
    #        POpen4.popen4("rak --nogroup -l '#{Regexp.escape(text)}' #{where}") do |stdin, stdout, stderr|
    #          value = stdout.read
    #        end
    value
end

This works for me ... May be this one help someone to upgrade to rails 3 on windows ..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.