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-0.8.6 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.5 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.4 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.3 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.2 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.1 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.8.0 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.7.1 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.7.0 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.9 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.8 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.7 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.6 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.5 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.4 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.3 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.2 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.1 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.6.0 lib/jets/commands/templates/skeleton/bin/ruby_server
jets-0.5.8 lib/jets/commands/templates/skeleton/bin/ruby_server