fastlane/lib/fastlane/actions/appledoc.rb in fastlane-2.70.0.beta.20171217010003 vs fastlane/lib/fastlane/actions/appledoc.rb in fastlane-2.70.0

- old
+ new

@@ -20,10 +20,11 @@ company_id: "--company-id", create_html: "--create-html", create_docset: "--create-docset", install_docset: "--install-docset", publish_docset: "--publish-docset", + no_create_docset: "--no-create-docset", html_anchors: "--html-anchors", clean_output: "--clean-output", docset_bundle_id: "--docset-bundle-id", docset_bundle_name: "--docset-bundle-name", docset_desc: "--docset-desc", @@ -141,9 +142,10 @@ # OUTPUT GENERATION FastlaneCore::ConfigItem.new(key: :create_html, env_name: "FL_APPLEDOC_CREATE_HTML", description: "Create HTML", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :create_docset, env_name: "FL_APPLEDOC_CREATE_DOCSET", description: "Create documentation set", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :install_docset, env_name: "FL_APPLEDOC_INSTALL_DOCSET", description: "Install documentation set to Xcode", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :publish_docset, env_name: "FL_APPLEDOC_PUBLISH_DOCSET", description: "Prepare DocSet for publishing", is_string: false, default_value: false), + FastlaneCore::ConfigItem.new(key: :no_create_docset, env_name: "FL_APPLEDOC_NO_CREATE_DOCSET", description: "Create HTML and skip creating a DocSet", is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :html_anchors, env_name: "FL_APPLEDOC_HTML_ANCHORS", description: "The html anchor format to use in DocSet HTML", is_string: true, optional: true), FastlaneCore::ConfigItem.new(key: :clean_output, env_name: "FL_APPLEDOC_CLEAN_OUTPUT", description: "Remove contents of output path before starting", is_string: false, default_value: false), # DOCUMENTATION SET INFO FastlaneCore::ConfigItem.new(key: :docset_bundle_id, env_name: "FL_APPLEDOC_DOCSET_BUNDLE_ID", description: "DocSet bundle identifier", is_string: true, optional: true),