Reputation: 2218
Every time I push to heroku, it is running bundle install and it takes me about 4 minutes. This is a small app that is not live yet. What if I only want to push a single change where I add one character to a view file? Is there anyway that I can tell heroku, here change this file and do it quickly without having to wait 4 minutes to run bundle install and everything else it does?
Upvotes: 0
Views: 198
Reputation: 2659
You have to wait till Heroku auto deploy your project.
There is no way to tell heroku for minor changes, Its auto deployment process done by heroku so it will follow all steps like migration,bundle,pre -compilation.
And I think it's good for us.
Upvotes: 2