Flowdock
method

set_bundle_variables

Importance_0
v2_6_3 - Show latest stable - 0 notes - Class: SharedHelpers
  • 1_8_6_287
  • 1_8_7_72
  • 1_8_7_330
  • 1_9_1_378
  • 1_9_2_180
  • 1_9_3_125
  • 1_9_3_392
  • 2_1_10
  • 2_2_9
  • 2_4_6
  • 2_5_5
  • 2_6_3 (0)
  • What's this?
set_bundle_variables() private

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/bundler/shared_helpers.rb, line 308
    def set_bundle_variables
      begin
        exe_file = Bundler.rubygems.bin_path("bundler", "bundle", VERSION)
        unless File.exist?(exe_file)
          exe_file = File.expand_path("../../../exe/bundle", __FILE__)
        end
        Bundler::SharedHelpers.set_env "BUNDLE_BIN_PATH", exe_file
      rescue Gem::GemNotFoundException
        exe_file = File.expand_path("../../../exe/bundle", __FILE__)
        # for Ruby core repository
        exe_file = File.expand_path("../../../../bin/bundle", __FILE__) unless File.exist?(exe_file)
        Bundler::SharedHelpers.set_env "BUNDLE_BIN_PATH", exe_file
      end

      # Set BUNDLE_GEMFILE
      Bundler::SharedHelpers.set_env "BUNDLE_GEMFILE", find_gemfile(:order_matters).to_s
      Bundler::SharedHelpers.set_env "BUNDLER_VERSION", Bundler::VERSION
    end
Register or log in to add new notes.