Sha256: db4fd13d7ef07440c8e8a5281db2771d54c6341655dd3f6b799f8bd3ae49fbb1

Contents?: true

Size: 586 Bytes

Versions: 8

Compression:

Stored size: 586 Bytes

Contents

# Load schools 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

8 entries across 8 versions & 1 rubygems

Version Path
scidea-schools-1.1 config/environment.rb
scidea-schools-1.0.6 config/environment.rb
scidea-schools-1.0.5 config/environment.rb
scidea-schools-1.0.4 config/environment.rb
scidea-schools-1.0.3 config/environment.rb
scidea-schools-1.0.2 config/environment.rb
scidea-schools-1.0.1 config/environment.rb
scidea-schools-1.0.0 config/environment.rb