Itay k
Itay k

Reputation: 4469

Rails console doesn't run on ec2 after deployment with rubber

I deployed my application on ec2 using rubber and it works fine, however when i try to run the console (typed rails console) it didn't work. It didn't recognize the scipt at first and when i tried to run it from the script directory I got a "couldn't find ruby.exe" message. Any ideas?

Upvotes: 2

Views: 642

Answers (1)

Moozly
Moozly

Reputation: 192

Run it with:

bundle exec rails c

Upvotes: 6

Related Questions