Reputation: 107
I have a very simple ruby on rails application and I want to use capistrano to deploy it.
It took me some time to configure the project and deploy the application and I'm not sure I made it right.
There are multiple gems in the gemfile, ok. When I run gem list puma
in the server it returns null, which means that the gem 'puma' is not installed in the server, right?
but I've just deployed the application via capistrano, shouldn't all the gems in the gemfile be properly installed?
and then I thought: is capistrano supposed to install gems in the deploy?
My application is simple and I'm spending way more time to deploy and launch it than I should. Is it so complex to deploy and ruby on rails app?
Upvotes: 0
Views: 46
Reputation: 56
Go to your current directory of your application folder and try running the command with bundle exec.
Upvotes: 1