Sha256: c89f5adb06f474714219a59bb8728e7a3384af8d8528ace1c5d24ed63aded7ee

Contents?: true

Size: 981 Bytes

Versions: 3

Compression:

Stored size: 981 Bytes

Contents

# frozen_string_literal: true

require "refinements/structs"

module Rubysmith
  module Builders
    module RSpec
      # Builds RSpec spec helper for project skeleton.
      class Helper
        using Refinements::Structs

        def self.call(...) = new(...).call

        def initialize configuration, builder: Builder
          @configuration = configuration
          @builder = builder
        end

        def call
          return configuration unless configuration.build_rspec

          builder.call(configuration.merge(template_path: "%project_name%/spec/spec_helper.rb.erb"))
                 .render
                 .replace(/\n{3,}/, "\n\n")
                 .replace(/\n\s{2}(?=(require|Simple|using|Pathname|Dir))/, "\n")
                 .replace(/\n\s{4}(?=(enable|add|min))/, "\n  ")
                 .replace("5\n  end", "5\nend")

          configuration
        end

        private

        attr_reader :configuration, :builder
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rubysmith-3.7.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-3.6.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-3.5.0 lib/rubysmith/builders/rspec/helper.rb