When I run bundle exec rails console production or rails console production via SSH on the server in the Current folder of the Capistr
I'm assuming that you updated to rails 4 from version 3 and your app can't find the executables in the bin directory. Run this to see your rails version:
$ rails -v
If your rails version is 4 or above, try running this:
$ rake rails:update:bin
Source: Rails 4 Release Notes
6.1 Notable changes
- Your app's executables now live in the
bin/dir. Runrake rails:update:binto getbin/bundle,bin/rails, andbin/rake.