Cannot create a new Rails Project with Aptana Studio 3

前端 未结 3 1917
后悔当初
后悔当初 2021-01-14 08:59

I\'ve installed Aptana Studio 3 today, and been trying to create a new Rails Project.

But nothing is being created...

I can see in the commandline it is runn

3条回答
  •  不思量自难忘°
    2021-01-14 09:48

    What I did was from the terminal within aptana IDE, created the folder for the application (as aptana does not do this since 'rails new fails') ran the command below

    alias rails='C:/RailsInstaller/Ruby1.9.3/bin/rails'
    

    and then navigated inside the folder and typed in

    rails new .
    

    alternatively I won't have to create a folder, set the alias and type

    rails new myapp
    

    Hope this helps anybody else looking for the same information.

提交回复
热议问题