Sha256: a11beffa297bd9ee28b269a076aa0e78d4c29434a131900a8e6c89eb6857e780

Contents?: true

Size: 633 Bytes

Versions: 2

Compression:

Stored size: 633 Bytes

Contents

# = config/boot.rb
#
# Loads the Ruby language framework and activates Bundler.
#
# We use a standalone bundle installation becaues it makes it easier
# to have non-Ruby code in underlying frameworks interact with the
# deploy pack.
#
# Make sure you install the bundle locally with the following command:
#
# @example Install a standalone bundle of gems
#
#   $ bundle install --standalone

setup_path = File.expand_path("../../bundle/bundler/setup.rb", __FILE__)
begin
  require setup_path
rescue LoadError => e
  $stderr.puts("Failed to require \"#{setup_path}\".  Try running\n\n  bundle install --standalone\n\n")
  exit(1)
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
wukong-deploy-0.0.2 templates/config/boot.rb.erb
wukong-deploy-0.0.1 templates/config/boot.rb.erb