Rails server does not start by command "Rails s"
A better method is to update your bin using following command
bundle exec rake rails:update:bin
You need to create a new Rails app (unless you already have one)
rails new my_app
Go to your app directory
cd my_app
Start the server in that directory
rails s