Sha256: abb20de202fc1335e2cf70106313d212c3a67f478eda64b67d4f6873c61e564f

Contents?: true

Size: 938 Bytes

Versions: 8

Compression:

Stored size: 938 Bytes

Contents

# frozen_string_literal: true

require "refinements/struct"

module Rubysmith
  module Builders
    module RSpec
      # Builds RSpec shared context for temporary directories.
      class Context
        using Refinements::Struct

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

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

        def call
          return configuration unless configuration.build_rspec

          template = "%project_name%/spec/support/shared_contexts/temp_dir.rb.erb"
          configuration.merge(template_path: template)
                       .then { |updated_configuration| builder.call updated_configuration }
                       .render
                       .replace(/\n\s+\n\s+/, "\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-6.6.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.5.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.4.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.3.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.2.1 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.2.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.1.0 lib/rubysmith/builders/rspec/context.rb
rubysmith-6.0.0 lib/rubysmith/builders/rspec/context.rb