Sha256: f3537aa7104bb158dc909fea1c0057a75700d4519fb1bec5aeb8afb93d6aea0c

Contents?: true

Size: 533 Bytes

Versions: 88

Compression:

Stored size: 533 Bytes

Contents

#!/bin/bash

set -e

# Figure out where this script is located.
PROJECTDIR="`dirname \"$0\"`"
PROJECTDIR="`cd \"$PROJECTDIR/..\" && pwd`"

unset BUNDLE_IGNORE_CONFIG
# When jets packages the app code it creates .bundle/config in the project root.
# We want that to be used.

# Run the actual app using the bundled Ruby interpreter, with Bundler activated.
if [ -n "$C9_USER" ]; then
  exec ruby -rbundler/setup bin/ruby_server.rb
else
  exec "$PROJECTDIR/bundled/rbenv/shims/ruby" -rbundler/setup "$PROJECTDIR/bin/ruby_server.rb"
fi

Version data entries

88 entries across 88 versions & 1 rubygems

Version Path
jets-1.1.3 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.1.2 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.1.1 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.1.0 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.18 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.17 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.16 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.15 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.13 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.12 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.11 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.10 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.9 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.8 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.7 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.6 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.5 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.4 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.3 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-1.0.2 lib/jets/commands/templates/skeleton/bin/ruby_server