8 lines
188 B
Ruby
8 lines
188 B
Ruby
# Make sure we set that before everything
|
|
ENV['RACK_ENV'] ||= ENV['RAILS_ENV'] || ENV['ENV']
|
|
ENV['RAILS_ENV'] = ENV['RACK_ENV']
|
|
|
|
$: << 'lib'
|
|
require 'travis/web'
|
|
run Travis::Web::App.new
|