#!/usr/bin/env ruby $:.push File.expand_path('../../lib', __FILE__) require 'rest-assured/config' require 'uri' # disable buffering to have log messages sent straight to Heroku’s logging infrastructure $stdout.sync = true db = URI.parse(ENV['DATABASE_URL']) opts = { port: ENV['PORT'], adapter: 'postgresql', dbhost: db.host, user: db.user, dbpass: db.password, dbport: db.port, database: db.path[1..-1], encoding: 'utf8' } RestAssured::Config.build(opts) require 'rest-assured/application' RestAssured::Application.run!(:threaded => false)