Sha256: 36d03e7bd63fcea427f38d1d11247c8f1aece716e08909c73b75239ab1c9f23a

Contents?: true

Size: 657 Bytes

Versions: 41

Compression:

Stored size: 657 Bytes

Contents

# frozen_string_literal: true

require "refinements/structs"

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

41 entries across 41 versions & 1 rubygems

Version Path
rubysmith-5.9.0 lib/rubysmith/builders/reek.rb
rubysmith-5.8.1 lib/rubysmith/builders/reek.rb
rubysmith-5.8.0 lib/rubysmith/builders/reek.rb
rubysmith-5.7.0 lib/rubysmith/builders/reek.rb
rubysmith-5.6.0 lib/rubysmith/builders/reek.rb
rubysmith-5.5.0 lib/rubysmith/builders/reek.rb
rubysmith-5.4.0 lib/rubysmith/builders/reek.rb
rubysmith-5.3.0 lib/rubysmith/builders/reek.rb
rubysmith-5.2.0 lib/rubysmith/builders/reek.rb
rubysmith-5.1.0 lib/rubysmith/builders/reek.rb
rubysmith-5.0.1 lib/rubysmith/builders/reek.rb
rubysmith-4.9.0 lib/rubysmith/builders/reek.rb
rubysmith-4.8.0 lib/rubysmith/builders/reek.rb
rubysmith-4.7.0 lib/rubysmith/builders/reek.rb
rubysmith-4.6.1 lib/rubysmith/builders/reek.rb
rubysmith-4.6.0 lib/rubysmith/builders/reek.rb
rubysmith-4.5.0 lib/rubysmith/builders/reek.rb
rubysmith-4.4.0 lib/rubysmith/builders/reek.rb
rubysmith-4.3.0 lib/rubysmith/builders/reek.rb
rubysmith-4.2.0 lib/rubysmith/builders/reek.rb