Sha256: 056ff4cdb3ee4795444f68377836076ee97fd3b44a5b483f4924e26500e60b96

Contents?: true

Size: 331 Bytes

Versions: 1

Compression:

Stored size: 331 Bytes

Contents

#!C:/Ruby193/bin/ruby.exe


if ARGV.first == "start"
  ARGV.shift
  ARGV = ["exec", "thin", "start"] + ARGV

  Dir.chdir( ARGV[ARGV.index("-c")+1] )
  version = "> 0"
  gem 'bundler', version
  load Gem.bin_path('bundler', 'bundle', version)
else
  require 'thin_service'
  ThinService::Service.new(ARGV).run!
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thin_service-0.0.2 bin/thin_service