Sha256: 4de8744a0540871bbc1464be50eed9d1dfd9aa3bd58989bc33eb7b4936c055e1
Contents?: true
Size: 1018 Bytes
Versions: 23
Compression:
Stored size: 1018 Bytes
Contents
# frozen_string_literal: true require "refinements/structs" require "tocer" 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
23 entries across 23 versions & 1 rubygems