lib/tapioca/commands/configure.rb in tapioca-0.10.1 vs lib/tapioca/commands/configure.rb in tapioca-0.10.2
- old
+ new
@@ -1,16 +1,16 @@
# typed: strict
# frozen_string_literal: true
module Tapioca
module Commands
- class Configure < Command
+ class Configure < CommandWithoutTracker
sig do
params(
sorbet_config: String,
tapioca_config: String,
- default_postrequire: String
+ default_postrequire: String,
).void
end
def initialize(
sorbet_config:,
tapioca_config:,
@@ -81,10 +81,10 @@
installer.generate_bundler_executable_stubs(spec, { force: force })
say_status(
force ? :force : :create,
Tapioca::BINARY_FILE,
- force ? :yellow : :green
+ force ? :yellow : :green,
)
end
sig { returns(Bundler::Installer) }
def installer