module Byebug::Helpers::PathHelper
Utilities for managing gem paths
Public Instance Methods
all_files()
click to toggle source
# File lib/byebug/helpers/path.rb, line 15 def all_files @all_files ||= Dir.glob(File.expand_path('../../../../**/*.rb', __FILE__)) end
bin_file()
click to toggle source
# File lib/byebug/helpers/path.rb, line 7 def bin_file @bin_file ||= Gem.bin_path('byebug', 'byebug') end
lib_files()
click to toggle source
# File lib/byebug/helpers/path.rb, line 11 def lib_files @lib_files ||= Dir.glob(File.expand_path('../../../**/*.rb', __FILE__)) end