rubybundlewindows-7-x64heroku-toolbelt

Bundle command not found Windows x64


I just installed ruby with the Heroku Toolbelt, probem is that when I do bundle install it gives me this error:

sh.exe": /c/Program Files (x86)/ruby-1.9.3/bin/bundle: "c:/Program: bad interpreter: No such file or directory

Acording to this question Bundle command not found. Bad Interpreter I should change the PATH, but I dont know how to do this, I have changed windows PATH enviorment variable, even changed to C:\ruby-1.9.2\bin I get a similar error:

sh.exe": /c/ruby-1.9.3/bin/bundle: "c:/Program: bad interpreter: No such file or directory

When I try to reinstall the Toolbelt I change the install direcotry to c:\ but still the wizard install git and ruby folders at Program Files (x86) directory.

Any suggestions?


Solution

  • Well I found the solution, so I'm posting here. Problem seems to be the bundler installation in windows x64 machines, to solve this I did this.

    Copy the following directories to C:/

    C:\Program Files (x86)\Heroku
    
    C:\Program Files (x86)\Git
    
    C:\Program Files (x86)\ruby-1.9.2
    

    Change windows environment "Path" variable, to do this right click Computer > Properties > Advance Settings > environment variables. Path is under "System Variables" section. Edit them to this:

    C:\Heroku\bin;C:\ruby-1.9.2\bin;C:\git\bin;C:\git\cmd

    Go to C:\ruby-1.9.2\bin and open the "bundle" file with note pad (not the bundle.bat), change the first line from
    #!"c:/Program Files (x86)/ruby-1.9.2/bin/ruby.exe"##
    to
    !#!c:/ruby-1.9.2/bin/ruby.exe##

    Now go to C:\Git and change the properties (right click > properties) of the Git Bash direct access, and change the target from
    C:\Windows\SysWOW64\cmd.exe /c ""C:\Program Files (x86)\Git\bin\sh.exe" --login -i"
    to
    C:\Windows\SysWOW64\cmd.exe /c ""C:\Git\bin\sh.exe" --login -i"

    Hope it helps someone