Sha256: 04a3fea0a3c1c5a6f7f09b98fe5eecd2f5e09622e0875249b8a6f44b526fc9e8
Contents?: true
Size: 584 Bytes
Versions: 7
Compression:
Stored size: 584 Bytes
Contents
# Load local Gemfile and get the path to the local core application # (from standard rails config/boot.rb) gemfile = File.expand_path('../../Gemfile', __FILE__) begin ENV['BUNDLE_GEMFILE'] = gemfile require 'bundler' Bundler.setup rescue Bundler::GemNotFound => e STDERR.puts e.message STDERR.puts "Try running `bundle install`." exit! end if File.exist?(gemfile) # get only the paths constants; let scidea core load all gems require 'scidea/paths.rb' # Load and initialize the Scidea core application require File.expand_path('../config/environment', Scidea::APP_PATH)
Version data entries
7 entries across 7 versions & 3 rubygems