Sha256: 746873918956c13b9a2768c756aea56738e10cdd443bfa5bd894b75facf0e961

Contents?: true

Size: 824 Bytes

Versions: 8

Compression:

Stored size: 824 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(/\A\n/, "")
                 .replace("\n\n\n", "\n\n")

          configuration
        end

        private

        attr_reader :configuration, :builder
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubysmith-5.9.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.8.1 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.8.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.7.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.6.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.5.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.4.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.3.0 lib/rubysmith/builders/rspec/helper.rb