I cloned an app from github and ran bundle install and rake db:migrate just fine. But when I run rails s or rails server to start the server, I get:
Lisa:try_rails_presentation admin-lisa$ rails s
/usr/local/rvm/gems/ruby-2.0.0-p481/gems/bundler-1.6.3/lib/bundler/runtime.rb:222: warning: Insecure world writable dir /usr/local in PATH, mode 040777
Things I have tried:
I updated my disk permissions.
Also, I tried running
chmod o-w /usr
and
chmod 0755 /usr/local
and
chmod go-w /usr/local/bin
and
chmod -R o-w /usr/local/bin
and
sudo chmod go-w /usr/local/bin
No luck so far. Any suggestions? I'm on rails 4 and the app also uses rails 4.
Thanks so much.