# typed: false # frozen_string_literal: true DEBUG = ENV.fetch("DEBUG", false) def debugging? DEBUG end require "debug" if debugging? require "hephaestus/version" require "hephaestus/exit_on_failure" require "hephaestus/generators/app_generator" require "hephaestus/generators/config_generator" require "hephaestus/generators/core_generator" require "hephaestus/generators/deployment_generator" require "hephaestus/generators/lib_generator" require "hephaestus/generators/license_generator" require "hephaestus/generators/rubocop_generator" require "hephaestus/generators/sorbet_generator" require "hephaestus/actions" require "hephaestus/actions/strip_comments_action" require "hephaestus/app_builder" module Hephaestus class << self def source_path(root) File.join(Hephaestus::AppGenerator.source_root, root) end end end