13 lines
441 B
Text
13 lines
441 B
Text
|
#!/usr/bin/env ruby
|
||
|
# This command will automatically be run when you run "rails" with Rails
|
||
|
# gems installed from the root of your application.
|
||
|
|
||
|
ENGINE_ROOT = File.expand_path('../..', __FILE__)
|
||
|
|
||
|
ENV['BUNDLE_GEMFILE'] ||= File.expand_path('Gemfile', ENGINE_ROOT)
|
||
|
ENGINE_PATH = File.expand_path('lib/hitobito_lit/wagon', ENGINE_ROOT)
|
||
|
|
||
|
load File.expand_path('../../app_root.rb', __FILE__)
|
||
|
|
||
|
load File.expand_path('bin/rails', ENV['APP_ROOT'])
|