Module: Tapioca::SorbetHelper

Extended by:
T::Sig
Included in:
Commands::Gem, Commands::Todo, Dsl::Compilers::ActiveRecordRelations, Tapioca::Static::SymbolLoader
Defined in:
lib/tapioca/helpers/sorbet_helper.rb

Defined Under Namespace

Classes: CmdResult

Constant Summary collapse

SORBET_GEM_SPEC =
T.let(
  ::Gem::Specification.find_by_name("sorbet-static"),
  ::Gem::Specification
)
SORBET_BIN =
T.let(
  Pathname.new(SORBET_GEM_SPEC.full_gem_path) / "libexec" / "sorbet",
  Pathname
)
SORBET_EXE_PATH_ENV_VAR =
"TAPIOCA_SORBET_EXE"
FEATURE_REQUIREMENTS =
T.let({
  # First tag that includes https://github.com/sorbet/sorbet/pull/4706
  to_ary_nil_support: ::Gem::Requirement.new(">= 0.5.9220"),
}.freeze, T::Hash[Symbol, ::Gem::Requirement])

Instance Method Summary collapse

Instance Method Details

#sorbet(*sorbet_args) ⇒ Object



35
36
37
38
# File 'lib/tapioca/helpers/sorbet_helper.rb', line 35

def sorbet(*sorbet_args)
  out, err, status = Open3.capture3([sorbet_path, *sorbet_args].join(" "))
  CmdResult.new(out: out, err: err, status: status.success? || false)
end

#sorbet_pathObject



41
42
43
44
45
# File 'lib/tapioca/helpers/sorbet_helper.rb', line 41

def sorbet_path
  sorbet_path = ENV.fetch(SORBET_EXE_PATH_ENV_VAR, SORBET_BIN)
  sorbet_path = SORBET_BIN if sorbet_path.empty?
  sorbet_path.to_s.shellescape
end

#sorbet_supports?(feature, version: nil) ⇒ Boolean

Returns:

  • (Boolean)


48
49
50
51
52
53
54
55
# File 'lib/tapioca/helpers/sorbet_helper.rb', line 48

def sorbet_supports?(feature, version: nil)
  version = SORBET_GEM_SPEC.version unless version
  requirement = FEATURE_REQUIREMENTS[feature]

  Kernel.raise "Invalid Sorbet feature #{feature}" unless requirement

  requirement.satisfied_by?(version)
end