Sha256: e1ec195646c30a222804e22d11548e6d7de6c51e24583a114328ea55f0d1c4c8
Contents?: true
Size: 452 Bytes
Versions: 27
Compression:
Stored size: 452 Bytes
Contents
# typed: strict # frozen_string_literal: true module Tapioca module Commands class DslVerify < AbstractDsl private sig { override.void } def execute load_application say("Checking for out-of-date RBIs...") say("") outpath = Pathname.new(Dir.mktmpdir) generate_dsl_rbi_files(outpath, quiet: true) say("") perform_dsl_verification(outpath) end end end end
Version data entries
27 entries across 27 versions & 1 rubygems