mirror of
https://github.com/TracksApp/tracks.git
synced 2025-09-21 21:40:48 +02:00
10 lines
307 B
Ruby
Executable file
10 lines
307 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
if ENV["RAILS_ENV"] != "production"
|
|
exec("#{__dir__}/../script/docker-environment", $PROGRAM_NAME, *ARGV) unless File.exist?("/etc/app-env")
|
|
end
|
|
begin
|
|
load File.expand_path("../spring", __FILE__)
|
|
rescue LoadError
|
|
end
|
|
require 'bundler/setup'
|
|
load Gem.bin_path('cucumber', 'cucumber')
|