Sha256: e5a8bb04aa53f726741c16f4bf48d81a4a6d64b6f76049b2f185ac2e1737c790

Contents?: true

Size: 799 Bytes

Versions: 2

Compression:

Stored size: 799 Bytes

Contents

# frozen_string_literal: true

require "refinements/struct"
require "tocer"

module Rubysmith
  module Builders
    module Documentation
      # Builds project skeleton LICENSE documentation.
      class License < Abstract
        using Refinements::Struct

        def call
          return configuration unless configuration.build_license

          configuration.merge(template_path: "%project_name%/LICENSE-#{license}.#{kind}.erb")
                       .then do |updated_configuration|
                         builder.call(updated_configuration).render.rename "LICENSE.#{kind}"
                       end

          configuration
        end

        private

        def kind = configuration.documentation_format

        def license = configuration.license_name
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rubysmith-6.10.0 lib/rubysmith/builders/documentation/license.rb
rubysmith-6.9.0 lib/rubysmith/builders/documentation/license.rb