Sha256: 962796849cf17a765a7c80cf58991e92bb360d9b4bd43c17b541a53b1b22131d

Contents?: true

Size: 850 Bytes

Versions: 8

Compression:

Stored size: 850 Bytes

Contents

# 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

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
hephaestus-0.6.4 lib/hephaestus.rb
hephaestus-0.6.3 lib/hephaestus.rb
hephaestus-0.6.2 lib/hephaestus.rb
hephaestus-0.6.1 lib/hephaestus.rb
hephaestus-0.6.0 lib/hephaestus.rb
hephaestus-0.5.2 lib/hephaestus.rb
hephaestus-0.5.1 lib/hephaestus.rb
hephaestus-0.5.0 lib/hephaestus.rb