Sha256: 40489e1ef169e668b6102be487e7dffde29bc4c2f8c78475c8c3d833fd872006
Contents?: true
Size: 1018 Bytes
Versions: 18
Compression:
Stored size: 1018 Bytes
Contents
# frozen_string_literal: true require "tocer" require "refinements/structs" module Rubysmith module Builders module Documentation # Builds project skeleton LICENSE documentation. class License 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_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 attr_reader :configuration, :builder def kind = configuration.documentation_format def license = configuration.license_name end end end end
Version data entries
18 entries across 18 versions & 1 rubygems