Ruby on Rails , No Rakefile found error

前端 未结 3 1722
走了就别回头了
走了就别回头了 2021-02-20 08:52

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 co

3条回答
  •  走了就别回头了
    2021-02-20 09:41

    Sounds like your Rakefile might be missing, or you might not be in the app's "root directory".

    cd to your blog directory, and you should see,

    $ ls
      app/
      bin/
      config/
      db/
      ...
    

    If it doesn't exist already, create a new file named Rakefile and put this text in there.

    #!/usr/bin/env rake
    # Add your own tasks in files placed in lib/tasks ending in .rake,
    # for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
    
    require File.expand_path('../config/application', __FILE__)
    
    Blog::Application.load_tasks
    

提交回复
热议问题