Class: Rubysmith::Builders::Documentation::License

Inherits:
Abstract
  • Object
show all
Defined in:
lib/rubysmith/builders/documentation/license.rb

Overview

Builds project skeleton LICENSE documentation.

Instance Method Summary collapse

Methods inherited from Abstract

call, #initialize

Constructor Details

This class inherits a constructor from Rubysmith::Builders::Abstract

Instance Method Details

#callObject



13
14
15
16
17
18
19
20
21
22
# File 'lib/rubysmith/builders/documentation/license.rb', line 13

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