Sha256: 9e40d762f6dd6616485199a044744649048719f58babffaf943f89ce07d4e51c

Contents?: true

Size: 655 Bytes

Versions: 8

Compression:

Stored size: 655 Bytes

Contents

# frozen_string_literal: true

require "refinements/struct"

module Rubysmith
  module Builders
    # Builds project skeleton Reek code quality support.
    class Reek
      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_reek

        builder.call(configuration.merge(template_path: "%project_name%/.reek.yml.erb")).render
        configuration
      end

      private

      attr_reader :configuration, :builder
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
rubysmith-6.6.0 lib/rubysmith/builders/reek.rb
rubysmith-6.5.0 lib/rubysmith/builders/reek.rb
rubysmith-6.4.0 lib/rubysmith/builders/reek.rb
rubysmith-6.3.0 lib/rubysmith/builders/reek.rb
rubysmith-6.2.1 lib/rubysmith/builders/reek.rb
rubysmith-6.2.0 lib/rubysmith/builders/reek.rb
rubysmith-6.1.0 lib/rubysmith/builders/reek.rb
rubysmith-6.0.0 lib/rubysmith/builders/reek.rb