# 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" Dir.glob(File.join(__dir__, "hephaestus", "generators", "*.rb")).each do |file| require file end require "hephaestus/actions" require "hephaestus/actions/strip_comments_action" require "hephaestus/app_builder"