[Solved] Can’t create ROR Project
I installed RVM and RBENV. First I uninstalled both. After that I installed ruby and rails as below command brew install ruby gem install rails Now its working fine. solved Can’t create ROR Project
I installed RVM and RBENV. First I uninstalled both. After that I installed ruby and rails as below command brew install ruby gem install rails Now its working fine. solved Can’t create ROR Project
Everywhere in your newly-created gem where it has module Pry, change it to: class Pry. Since Pry is already defined (as a class), you cannot redefine/reopen it as a module. solved Pry is not a module
Change the following from root :to => “BookmarksController#index” to this root :to => “bookmarks#index” Look at these tutorials http://tryruby.org/ http://railsforzombies.org/ 3 solved Ruby on Rails tutorial part two