aboutsummaryrefslogtreecommitdiffstats
path: root/load_paths.rb
blob: 873315f978b01ef08dcd31d00e219f6a6bcad1f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
begin
  require File.expand_path('../.bundle/environment', __FILE__)
rescue LoadError
  begin
    # bust gem prelude
    if defined? Gem
      Gem.cache
      gem 'bundler'
    else
      require 'rubygems'
    end
    require 'bundler'
    Bundler.setup
  rescue LoadError
    module Bundler
      def self.require(*args, &block); end
      def self.method_missing(*args, &block); end
    end

    %w(
      actionmailer
      actionpack
      activemodel
      activerecord
      activeresource
      activesupport
      railties
    ).each do |framework|
      $:.unshift File.expand_path("../#{framework}/lib", __FILE__)
    end
  end
end