class FLACsmith::Configuration::Loader

Represents the fully assembled Command Line Interface (CLI) configuration.

Public Class Methods

call(= new.call) click to toggle source
# File lib/flacsmith/configuration/loader.rb, line 13
    def self.call = new.call

    def initialize content: Content.new
      @content = content
    end

    def call = content

    private

    attr_reader :content
  end
end
new(content: Content.new) click to toggle source
# File lib/flacsmith/configuration/loader.rb, line 15
def initialize content: Content.new
  @content = content
end

Public Instance Methods

call(= content) click to toggle source
# File lib/flacsmith/configuration/loader.rb, line 19
  def call = content

  private

  attr_reader :content
end