Sha256: c443311e459a1c7d6635413fafd0fe5fa104243b4c318e21b31c2d7226e75968

Contents?: true

Size: 786 Bytes

Versions: 16

Compression:

Stored size: 786 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\n\n", "\n\n")

          configuration
        end

        private

        attr_reader :configuration, :builder
      end
    end
  end
end

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
rubysmith-5.2.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.1.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-5.0.1 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.9.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.8.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.7.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.6.1 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.6.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.5.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.4.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.3.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.2.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.1.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.0.1 lib/rubysmith/builders/rspec/helper.rb
rubysmith-4.0.0 lib/rubysmith/builders/rspec/helper.rb
rubysmith-3.8.0 lib/rubysmith/builders/rspec/helper.rb