Sha256: a398fc88d9df77ed544f3b52a0af75935e525215134f66485120b7c8984cb07a

Contents?: true

Size: 318 Bytes

Versions: 2

Compression:

Stored size: 318 Bytes

Contents

# frozen_string_literal: true

module Milestoner
  module Configuration
    # Defines configuration content as the primary source of truth for use throughout the gem.
    Model = Struct.new :documentation_format, :prefixes, :version do
      def initialize(**)
        super
        freeze
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
milestoner-16.0.1 lib/milestoner/configuration/model.rb
milestoner-16.0.0 lib/milestoner/configuration/model.rb