Sha256: 8aa7a7f6f1ca9d1aaae2e62383ed41331b85722f94392a199df3c5687f595ac8
Contents?: true
Size: 697 Bytes
Versions: 5
Compression:
Stored size: 697 Bytes
Contents
#! /usr/bin/env ruby # frozen_string_literal: true require 'sorbet-runtime' begin T::Configuration.default_checked_level = :never # Suppresses call validation errors T::Configuration.call_validation_error_handler = ->(*) {} # Suppresses errors caused by T.cast, T.let, T.must, etc. T::Configuration.inline_type_error_handler = ->(*) {} # Suppresses errors caused by incorrect parameter ordering T::Configuration.sig_validation_error_handler = ->(*) {} rescue # Need this rescue so that if another gem has # already set the checked level by the time we # get to it, we don't fail outright. nil end require_relative "../lib/tapioca/internal" Tapioca::Cli::Main.start(ARGV)
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
tapioca-0.4.27 | exe/tapioca |
tapioca-0.4.26 | exe/tapioca |
tapioca-0.4.25 | exe/tapioca |
tapioca-0.4.24 | exe/tapioca |
tapioca-0.4.23 | exe/tapioca |