Diego Benetti
Diego Benetti

Reputation: 107

Capistrano - Ruby on Rails application

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

Answers (1)

Akshay Chhikara
Akshay Chhikara

Reputation: 56

Go to your current directory of your application folder and try running the command with bundle exec.

Upvotes: 1

Related Questions