I have several rake tasks combined into one rake command. Just wondering is it possible to have one command run the "bundle install" within a rake task ?

Or other way around ?

So when I deploy my rails app to a new server all I need to do is just run one command and it will grab all the dependencies and migrate databases settings.yaml files etc

link|improve this question

74% accept rate
feedback

2 Answers

up vote 3 down vote accepted

you can chained your command with &&

For example :

rake my_task && bundle install

It's poor response but it's work ;-)

Obviously you can make your script

vi ./scripts/deploy.sh

#!/bin/sh
rake my_task && bundle install
link|improve this answer
thanks! never thought about create a script to run those command inline cool! – Jonathan Jun 23 '11 at 18:12
feedback

I've seen this been done bundle install && bundle exec rake db:migrate

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.