Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ruby on Rails , No Rakefile found error

I installed ruby on rails, postgres. I installed all required gem files, I created a project as http://guides.rubyonrails.org/getting_started.html wants

I added below code in config/routes.rb

Blog::Application.routes.draw do
  resources :posts
  root to: "welcome#index"
end

I am trying to run rake routes command.

But i get

rake aborted!
No Rakefile found (looking for: rakefile, Rakefile, rakefile.rb, Rakefile.rb)

I checked internet.. Everybody says "i need to run it under exact project folder". But i need to say, I tried almost 20 different folders on my Windows 7. (I am getting crazy)

I don't exactly know what is necessary for you experts, but :

I use :

Windows 7 Ultimate (64bit) Ruby200-x64 rake-10.1.0

Thanks in advance..

like image 655
Tim Tuckle Avatar asked Aug 26 '13 20:08

Tim Tuckle


1 Answers

I was having the same problem, and spent ages trying different commands, replacing rakefiles etc.

Turned out I was not in the app's root directory within the Command Prompt. :(

like image 173
tonyedwardspz Avatar answered Oct 02 '22 13:10

tonyedwardspz