Sha256: e6097a45566a265827693734f7b27cf05fc8404f6970babd92814926ea69731d

Contents?: true

Size: 1.14 KB

Versions: 10

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

require "refinements/string"
require "refinements/struct"

module Rubysmith
  module Builders
    # Builds project skeleton core structure and minimum file support.
    class Core < Abstract
      using Refinements::String
      using Refinements::Struct

      def call
        render_implementation
        render_specification
        true
      end

      private

      def render_implementation
        builder.call(settings.merge(template_path: "%project_name%/lib/%project_path%.rb.erb"))
               .render
               .replace("  require", "require")
               .replace(/    (?=(Zeit|loader|end))/, "")
               .replace("\n  \n", "\n\n")
               .insert_before("module #{module_name}", "#{indentation}# Main namespace.\n")
      end

      def render_specification
        return unless settings.build_zeitwerk

        path = "%project_name%/spec/lib/%project_path%_spec.rb.erb"
        builder.call(settings.merge(template_path: path)).render
      end

      def indentation = ::Core::EMPTY_STRING.indent settings.project_levels

      def module_name = settings.project_class
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rubysmith-7.9.0 lib/rubysmith/builders/core.rb
rubysmith-7.8.0 lib/rubysmith/builders/core.rb
rubysmith-7.7.0 lib/rubysmith/builders/core.rb
rubysmith-7.6.0 lib/rubysmith/builders/core.rb
rubysmith-7.5.0 lib/rubysmith/builders/core.rb
rubysmith-7.4.0 lib/rubysmith/builders/core.rb
rubysmith-7.3.0 lib/rubysmith/builders/core.rb
rubysmith-7.2.0 lib/rubysmith/builders/core.rb
rubysmith-7.1.0 lib/rubysmith/builders/core.rb
rubysmith-7.0.0 lib/rubysmith/builders/core.rb