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