Running Geocoding in Rails application locally

I have forked the Geocoding in Rails repo and am trying to run the Rails app locally. I have run bundle and rake db:setup with success. When I try running rails s from within the example_app folder, the rails s command does not succeed. It returns the rails command usage info.

[master][~/src/rails_projects/geocoding-on-rails/example_app] rails s
Usage:
  rails new APP_PATH [options]

Options:

What are the directions for running the example_app inside of the Geocoding in Rails repo?

Hi MIke,

You will need to create the ./bin directory using the command ‘bundle install --binstubs’

Thanks, that fixed the problem.