Sha256: f66b7b2d35c75a77bae7da41fc81452054eff4aa8f5a4472af95c8b1ce431c11
Contents?: true
Size: 449 Bytes
Versions: 3
Compression:
Stored size: 449 Bytes
Contents
# DO NOT MODIFY THIS FILE module Bundler LOAD_PATHS = <%= load_paths.inspect %> AUTOREQUIRES = <%= autorequires_for_groups.inspect %> def self.setup(*groups) LOAD_PATHS.each { |path| $LOAD_PATH.unshift path } end def self.require(*groups) groups = [:default] if groups.empty? groups.each do |group| AUTOREQUIRES[group].each { |file| Kernel.require file } end end # Setup bundle when it's required. setup end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
bundler-0.9.2 | lib/bundler/templates/environment.erb |
bundler-0.9.1 | lib/bundler/templates/environment.erb |
bundler-0.9.1.pre1 | lib/bundler/templates/environment.erb |