File: require.rb

package info (click to toggle)
ruby-ruby-lsp 0.26.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,676 kB
  • sloc: ruby: 35,294; javascript: 29; sh: 7; makefile: 4
file content (22 lines) | stat: -rw-r--r-- 841 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# typed: strict
# frozen_string_literal: true

# Add your extra requires here (`bin/tapioca require` can be used to bootstrap this list)

# If YARP is in the bundle, we have to remove it from the $LOAD_PATH because it contains a default export named `prism`
# that will conflict with the actual Prism gem
yarp_require_paths = Gem.loaded_specs["yarp"]&.full_require_paths
$LOAD_PATH.delete_if { |path| yarp_require_paths.include?(path) } if yarp_require_paths

require "language_server-protocol"
require "prism"
require "prism/visitor"
require "mocha/minitest"
require "rubocop/minitest/assert_offense"
require "syntax_tree/cli"
require "spoom/backtrace_filter/minitest"
require "test/unit/ui/testrunner"
require "test/unit/testresult"
require "test/unit/ui/testrunnermediator"
require "test/unit/ui/console/testrunner"
require "lint_roller"