Sha256: 333d6622c38f922f59ed73aa9ee3fbe772bc6d83835d074cc9592273287872f4

Contents?: true

Size: 408 Bytes

Versions: 10

Compression:

Stored size: 408 Bytes

Contents

# frozen_string_literal: true

require "refinements/struct"

module Rubysmith
  module Builders
    # Builds project skeleton Reek code quality support.
    class Reek < Abstract
      using Refinements::Struct

      def call
        return false unless settings.build_reek

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

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
rubysmith-7.9.0 lib/rubysmith/builders/reek.rb
rubysmith-7.8.0 lib/rubysmith/builders/reek.rb
rubysmith-7.7.0 lib/rubysmith/builders/reek.rb
rubysmith-7.6.0 lib/rubysmith/builders/reek.rb
rubysmith-7.5.0 lib/rubysmith/builders/reek.rb
rubysmith-7.4.0 lib/rubysmith/builders/reek.rb
rubysmith-7.3.0 lib/rubysmith/builders/reek.rb
rubysmith-7.2.0 lib/rubysmith/builders/reek.rb
rubysmith-7.1.0 lib/rubysmith/builders/reek.rb
rubysmith-7.0.0 lib/rubysmith/builders/reek.rb