lib/milestoner/configuration/model.rb in milestoner-16.2.1 vs lib/milestoner/configuration/model.rb in milestoner-17.0.0

- old
+ new

@@ -1,8 +1,31 @@ # 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 + Model = Struct.new :avatar_domain, + :avatar_uri, + :build_format, + :build_layout, + :build_root, + :build_template_paths, + :commit_categories, + :commit_domain, + :commit_format, + :commit_uri, + :profile_domain, + :profile_uri, + :project_author, + :project_description, + :project_generator, + :project_label, + :project_name, + :project_owner, + :project_uri, + :project_version, + :review_domain, + :review_uri, + :tracker_domain, + :tracker_uri end end