aboutsummaryrefslogblamecommitdiffstats
path: root/load_paths.rb
blob: 873315f978b01ef08dcd31d00e219f6a6bcad1f7 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11



                                                              






                        


                     




                                                 












                                                                  
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