[Rails] Re: Can't use rails_upgrade plugin on Windows due to missing fork() function

2011-11-10 Thread Gayle Craig
I tried using this https://github.com/matschaffer/win32-open3-19 as described in this post: http://stackoverflow.com/questions/4930270/ruby-1-9-no-such-file-to-load-win32-open3 But I never got it to work. Note that the "win32-open3 requires Ruby version < 1.9.0" So I used pik to downgrade to R

[Rails] Re: Can't use rails_upgrade plugin on Windows due to missing fork() function

2010-12-08 Thread daze
In the end, I just made a new rails 3 application and did a lot of code transfer (copy/paste). It actually didn't take that long, and things are great with the app in Rails 3. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to th

[Rails] Re: Can't use rails_upgrade plugin on Windows due to missing fork() function

2010-11-12 Thread ha...@haslo.ch
I had the same problem, and found the solution here: https://github.com/jm/rails_upgrade/issues#issue/7/comment/497475 There's a required gem that uses fork(), of which there is a windows version that doesn't. So first, you have to... gem install win32-open3 ...and then you edit the file as sta

[Rails] Re: Can't use rails_upgrade plugin on Windows due to missing fork() function

2010-10-27 Thread Marc Bungart
Hi daze, I’m trying the same without a solution yet. Did you make any progress? Kind regards Marc -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrai

[Rails] Re: Can't use rails_upgrade plugin on Windows due to missing fork() function

2010-10-23 Thread zYan1de
Ruby's fork() function isn't "unimplemented" on windows, fork() is an function provided by the OS on Unix and Unix-like OS'es (e.g. Linux, OS X, etc, etc.) On Oct 22, 11:03 pm, daze wrote: > I'm on Windowsand I can't get anything to work with this > plugin:http://github.com/rails/rails_upgra