Sha256: 96e397822d17b42bf7d3d648decf9da584e4770668615a6a32825b631910bbd8
Contents?: true
Size: 538 Bytes
Versions: 14
Compression:
Stored size: 538 Bytes
Contents
#!/bin/bash set -e # Figure out where this script is located. SELFDIR="`dirname \"$0\"`" SELFDIR="`cd \"$SELFDIR\" && pwd`" ## GEMFILE if [ -f "$SELFDIR/lib/vendor/Gemfile" ] then # Tell Bundler where the Gemfile and gems are. export BUNDLE_GEMFILE="$SELFDIR/lib/vendor/Gemfile" unset BUNDLE_IGNORE_CONFIG # Run the actual app using the bundled Ruby interpreter, with Bundler activated. exec "$SELFDIR/lib/ruby/bin/ruby" -rbundler/setup "$SELFDIR/lib/app/$1" else exec "$SELFDIR/lib/ruby/bin/ruby" "$SELFDIR/lib/app/$1" fi
Version data entries
14 entries across 14 versions & 1 rubygems