コード例 #1
0
        /// <summary>
        /// Sets if caching to disk in non-safe mode should be disabled.
        /// --disable-disk-cache
        ///
        /// Disable caching of content to disk in order to skip creating a `.jekyll-cache` or similar
        /// directory at the source to avoid interference with virtual environments and third-party
        /// directory watchers. Caching to disk is always disabled in safe mode.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="disable"><see langword="true"/> to disable caching to disk in non-safe mode, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllServeSettings.DisableDiskCache"/> property updated with the value provided in <paramref name="disable"/>.</returns>
        public static JekyllServeSettings DisableDiskCache(this JekyllServeSettings settings, bool disable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.DisableDiskCache = disable;

            return(settings);
        }
コード例 #2
0
        /// <summary>
        /// Specifies one or more configuration file(s) instead of using `_config.yml` automatically.
        /// Settings in later files override settings in earlier files.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="configurationFilePaths">One or more custom configuration file(s).</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="configurationFilePaths"/> provided.</returns>
        public static JekyllServeSettings WithConfiguration(this JekyllServeSettings settings, params FilePath[] configurationFilePaths)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Configuration = configurationFilePaths;

            return(settings);
        }
コード例 #3
0
        /// <summary>
        /// Sets if posts that were marked as unpublished should be rendered.
        /// --unpublished
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to render posts that were marked as unpublished, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllServeSettings.Unpublished"/> property updated with the value provided in <paramref name="enable"/>.</returns>
        public static JekyllServeSettings RenderUnpublished(this JekyllServeSettings settings, bool enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Unpublished = enable;

            return(settings);
        }
コード例 #4
0
        /// <summary>
        /// Sets if polling should be used when watching for changes.
        /// --force_polling
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to force polling when watching for changes, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllServeSettings.ForcePolling"/> property updated with the value provided in <paramref name="enable"/>.</returns>
        public static JekyllServeSettings ForcePolling(this JekyllServeSettings settings, bool enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.ForcePolling = enable;

            return(settings);
        }
コード例 #5
0
        /// <summary>
        /// Sets the base URL to serve the website from.
        /// -b, --baseurl URL
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="baseUrl">The base URL to serve the website from.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="baseUrl"/> provided.</returns>
        public static JekyllServeSettings SetBaseUrl(this JekyllServeSettings settings, string baseUrl)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.BaseUrl = baseUrl;

            return(settings);
        }
コード例 #6
0
        /// <summary>
        /// Sets if the build should fail if there is a YAML syntax error in a page's front matter.
        /// --strict_front_matter
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to fail if errors are present in front matter, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllServeSettings.StrictFrontMatter"/> property updated with the value provided in <paramref name="enable"/>.</returns>
        public static JekyllServeSettings UseStrictFrontMatter(this JekyllServeSettings settings, bool enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.StrictFrontMatter = enable;

            return(settings);
        }
コード例 #7
0
        /// <summary>
        /// Sets if the full backtrace should be shown when an error occurs.
        /// -t, --trace
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to show the full backtrace when an error occurs, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllServeSettings.Trace"/> property updated with the value provided in <paramref name="enable"/>.</returns>
        public static JekyllServeSettings EnableTrace(this JekyllServeSettings settings, bool enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Trace = enable;

            return(settings);
        }
コード例 #8
0
        /// <summary>
        /// Sets the maximum delay before automatically reloading page.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="maxDelay">The maximum delay before automatically reloading page.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="maxDelay"/> provided.</returns>
        public static JekyllServeSettings SetLiveReloadMaxDelay(this JekyllServeSettings settings, TimeSpan maxDelay)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LiveReloadMaxDelay = maxDelay;

            return(settings);
        }
コード例 #9
0
        /// <summary>
        /// Sets the file glob patterns for LiveReload to ignore.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="globPatterns">The file glob patterns for LiveReload to ignore.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="globPatterns"/> provided.</returns>
        public static JekyllServeSettings WithLiveReloadIgnore(this JekyllServeSettings settings, params string[] globPatterns)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LiveReloadIgnore = globPatterns;

            return(settings);
        }
コード例 #10
0
        /// <summary>
        /// Sets the X.509 (SSL) Private Key, stored or symlinked in the site source.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="sslKey">The X.509 (SSL) Private Key, stored or symlinked in the site source.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="sslKey"/> provided.</returns>
        public static JekyllServeSettings UseSslKey(this JekyllServeSettings settings, FilePath sslKey)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.SslKey = sslKey;

            return(settings);
        }
コード例 #11
0
        /// <summary>
        /// Sets if the initial site build which occurs before the server is started should be skipped.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to skips the initial site build which occurs before the server is started, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="enable"/> provided.</returns>
        public static JekyllServeSettings SkipInitialBuild(this JekyllServeSettings settings, bool?enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.SkipInitialBuild = enable;

            return(settings);
        }
コード例 #12
0
        /// <summary>
        /// Sets if a page shoud be reloaded automatically on the browser when its content is edited.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to reload a page automatically on the browser when its content is edited, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="enable"/> provided.</returns>
        public static JekyllServeSettings UseLiveReload(this JekyllServeSettings settings, bool?enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LiveReload = enable;

            return(settings);
        }
コード例 #13
0
        /// <summary>
        /// Sets if a directory listing should be shown instead of loading your index file.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to show a directory listing instead of loading your index file, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="enable"/> provided.</returns>
        public static JekyllServeSettings ShowDirListing(this JekyllServeSettings settings, bool?enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.ShowDirListing = enable;

            return(settings);
        }
コード例 #14
0
        /// <summary>
        /// Specifies if Bundler should not be used to execute Jekyll.
        /// `jekyll` instead of `bundle exec`...
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to use Bundler to execute Jekyll, otherwise <see langword="false"/>.</param>
        /// <exception cref="ArgumentNullException"/>
        /// <returns>The <paramref name="settings"/> instance with the <see cref="JekyllSettings.DoNotUseBundler"/> property updated with the value provided in <paramref name="enable"/>.</returns>
        public static JekyllServeSettings DoNotUseBundler(this JekyllServeSettings settings, bool?enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.DoNotUseBundler = enable;

            return(settings);
        }
コード例 #15
0
        /// <summary>
        /// Sets the local server hostname to listen at.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="hostname">The local server hostname to listen at.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="hostname"/> provided.</returns>
        public static JekyllServeSettings SetHostname(this JekyllServeSettings settings, string hostname)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Hostname = hostname;

            return(settings);
        }
コード例 #16
0
        /// <summary>
        /// Sets if the site's URL should be open in the browser.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="enable"><see langword="true"/> to open the site's URL in the browser, otherwise <see langword="false"/>.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="enable"/> provided.</returns>
        public static JekyllServeSettings OpenUrl(this JekyllServeSettings settings, bool?enable = true)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.OpenUrl = enable;

            return(settings);
        }
コード例 #17
0
        /// <summary>
        /// Sets a limit to the number of posts to parse and publish.
        /// --limit_posts NUM
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="maxPosts">The maximum number of posts to parse and publish.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="maxPosts"/> provided.</returns>
        public static JekyllServeSettings LimitPosts(this JekyllServeSettings settings, int?maxPosts)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LimitPosts = maxPosts;

            return(settings);
        }
コード例 #18
0
        /// <summary>
        /// Sets the log level which should be used to run the Jekyll command.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="logLevel">Log level which should be used to run the Jekyll command.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="logLevel"/> provided.</returns>
        public static JekyllServeSettings SetLogLevel(this JekyllServeSettings settings, JekyllLogLevel?logLevel)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LogLevel = logLevel;

            return(settings);
        }
コード例 #19
0
        /// <summary>
        /// Sets the port for LiveReload to listen on.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="port">The port for LiveReload to listen on.</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="port"/> provided.</returns>
        public static JekyllServeSettings SetLiveReloadPort(this JekyllServeSettings settings, int?port)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.LiveReloadPort = port;

            return(settings);
        }
コード例 #20
0
        /// <summary>
        /// Sets the layout directory instead of using `_layouts/` automatically
        /// --layouts DIR
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="layoutsDirectory">The layouts directory (defaults to ./_layouts).</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="layoutsDirectory"/> provided.</returns>
        public static JekyllServeSettings SetLayouts(this JekyllServeSettings settings, DirectoryPath layoutsDirectory)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Layouts = layoutsDirectory;

            return(settings);
        }
コード例 #21
0
        /// <summary>
        /// Sets the Plugins directory instead of using `_plugins/` automatically.
        /// -p, --plugins DIR1[,DIR2,...]
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="pluginDirectoryPaths">One or more plugin directory path(s).</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="pluginDirectoryPaths"/> provided.</returns>
        public static JekyllServeSettings WithPlugins(this JekyllServeSettings settings,
                                                      params DirectoryPath[] pluginDirectoryPaths)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Plugins = pluginDirectoryPaths;

            return(settings);
        }
コード例 #22
0
        /// <summary>
        /// Sets the Site Source directory, the directory where Jekyll will read files (defaults to `./`).
        /// -s, --source DIR
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="sourceDirectoryPath">The source directory (defaults to `./`).</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="sourceDirectoryPath"/> provided.</returns>
        public static JekyllServeSettings SetSource(this JekyllServeSettings settings,
                                                    DirectoryPath sourceDirectoryPath)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Source = sourceDirectoryPath;

            return(settings);
        }
コード例 #23
0
        /// <summary>
        /// Sets the Site Destination directory (defaults to ./_site).
        /// -d, --destination DIR
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="destinationDirectoryPath">The destination directory (defaults to ./_site).</param>
        /// <returns>The <paramref name="settings"/> instance with updated with the <paramref name="destinationDirectoryPath"/> provided.</returns>
        public static JekyllServeSettings SetDestination(this JekyllServeSettings settings,
                                                         DirectoryPath destinationDirectoryPath)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            settings.Destination = destinationDirectoryPath;

            return(settings);
        }
コード例 #24
0
        /// <summary>
        /// Sets the working directory which should be used to run the Jekyll command.
        /// </summary>
        /// <param name="settings">The settings.</param>
        /// <param name="path">Working directory which should be used to run the Jekyll command.</param>
        /// <exception cref="ArgumentNullException"/>
        /// <returns>The <paramref name="settings"/> instance with <see cref="Cake.Core.Tooling.ToolSettings.WorkingDirectory"/> set to <paramref name="path"/>.</returns>
        public static JekyllServeSettings SetWorkingDirectory(this JekyllServeSettings settings, DirectoryPath path)
        {
            if (settings is null)
            {
                throw new ArgumentNullException(nameof(settings));
            }

            if (path is null)
            {
                throw new ArgumentNullException(nameof(path));
            }

            settings.WorkingDirectory = path;

            return(settings);
        }