Add continuous deployment to Heroku

http://about.travis-ci.org/blog/2013-07-09-introducing-continuous-deployment-to-heroku/
This commit is contained in:
Erik Michaels-Ober 2013-07-09 17:36:23 +02:00
parent 0a86da8775
commit a67a8d57ea
1 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
---
before_install: gem install bundler --pre
before_script: bundle exec rake db:create db:schema:load
bundler_args: --without assets:development:production
language: ruby
rvm:
- 1.9.3
- 1.9.3
deploy:
api_key:
secure: "q1sCaofDYIfYNgiqTjR1awMsfmy3mleYRPzLvksJMfQF3iY3mfntXu98exuv1vHK+qoQWyXLhLjhRhpfxVJ+QULltvFavrhv35WEDzGRnDDn2saVaOhOFaJ+Izgq3Dw8vFrN7Y6zhGkMa7QY48D+Ux29kvQ4j7TV3A8lijsusOk="
on:
rvm: 1.9.3
provider: heroku
run: "rake db:migrate"