Method: Bundler::SharedHelpers#root

Defined in:
lib/bundler/shared_helpers.rb

#rootObject

Raises:

[View source]

15
16
17
18
19
# File 'lib/bundler/shared_helpers.rb', line 15

def root
  gemfile = find_gemfile
  raise GemfileNotFound, "Could not locate Gemfile" unless gemfile
  Pathname.new(gemfile).expand_path.parent
end