te-dev Use `bundle exec` in Procfile

Enterprise relies on using `bundle exec` at the moment:

Gemfiles may contain credentials. The simplest solution is to just not
use them and instead replace `bundle` with a shim that loads
`bundle/setup` from `vendor`. In order for that to work Procfiles need
to prepend `bundle exec`.

Tyranja avatar Tyranja

Push event #539.1 passed

  • Ran for
AMD64
no language set
Git
The .travis.yml file used for this job is not available
Build Config
{
  "env": {
    "global": [
      "PG_DISABLE_SSL='1'"
    ]
  },
  "jdk": "openjdk7",
  "rvm": [
    "jruby-9.0.4.0",
    "2.2.2"
  ],
  "sudo": false,
  "cache": "bundler",
  "script": "bundle exec rspec spec",
  "language": "ruby",
  "services": [
    "redis",
    "rabbitmq",
    "postgresql"
  ],
  "before_script": [
    "createdb -U postgres travis_logs_test",
    "cp config/travis.example.yml config/travis.yml",
    "bundle exec rake db:migrate"
  ]
}