Sha256: 0677452e1015fb062c76e5ebbace771deb76fe23287f49ea5250cd9bcd58f60e

Contents?: true

Size: 441 Bytes

Versions: 6

Compression:

Stored size: 441 Bytes

Contents

module Byebug
  module Helpers
    #
    # Utilities for managing gem paths
    #
    module PathHelper
      def bin_file
        @bin_file ||= Gem.bin_path('byebug', 'byebug')
      end

      def lib_files
        @lib_files ||= Dir.glob(File.expand_path('../../../**/*.rb', __FILE__))
      end

      def all_files
        @all_files ||=
          Dir.glob(File.expand_path('../../../../**/*.rb', __FILE__))
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
byebug-8.0.1 lib/byebug/helpers/path.rb
byebug-8.0.0 lib/byebug/helpers/path.rb
byebug-7.0.0 lib/byebug/helpers/path.rb
byebug-6.0.2 lib/byebug/helpers/path.rb
byebug-6.0.1 lib/byebug/helpers/path.rb
byebug-6.0.0 lib/byebug/helpers/path.rb