diff --git a/docs/_docs/continuous-integration/circleci.md b/docs/_docs/continuous-integration/circleci.md index fb1275a5..d2e317df 100644 --- a/docs/_docs/continuous-integration/circleci.md +++ b/docs/_docs/continuous-integration/circleci.md @@ -30,8 +30,8 @@ source 'https://rubygems.org' ruby '2.7.4' -gem 'jekyll' -gem 'html-proofer' +gem "jekyll" +gem "html-proofer" ``` ```yaml diff --git a/docs/_docs/continuous-integration/github-actions.md b/docs/_docs/continuous-integration/github-actions.md index 932f7ebb..caba322f 100644 --- a/docs/_docs/continuous-integration/github-actions.md +++ b/docs/_docs/continuous-integration/github-actions.md @@ -61,10 +61,10 @@ Welcome to My Home Page source 'https://rubygems.org' -gem 'jekyll', '~> 4.2' +gem "jekyll", "~> 4.2" group :jekyll_plugins do - gem 'jekyll-timeago', '~> 0.13.1' + gem "jekyll-timeago", "~> 0.13.1" end ``` diff --git a/docs/_docs/installation/windows.md b/docs/_docs/installation/windows.md index 6e3e5b1a..1a4920f3 100644 --- a/docs/_docs/installation/windows.md +++ b/docs/_docs/installation/windows.md @@ -138,7 +138,7 @@ While `listen` has built-in support for UNIX systems, it may require an extra ge Add the following to the `Gemfile` for your site if you have issues with auto-regeneration on Windows alone: ```ruby -gem 'wdm', '~> 0.1.1', :install_if => Gem.win_platform? +gem "wdm", "~> 0.1.1", :install_if => Gem.win_platform? ``` You have to use a [Ruby+Devkit](https://rubyinstaller.org/downloads/) version of the RubyInstaller and install diff --git a/docs/_docs/step-by-step/10-deployment.md b/docs/_docs/step-by-step/10-deployment.md index 7fd0d08f..6c41f4e0 100644 --- a/docs/_docs/step-by-step/10-deployment.md +++ b/docs/_docs/step-by-step/10-deployment.md @@ -68,12 +68,12 @@ in a `jekyll_plugins` group they'll automatically be required into Jekyll: ```ruby source 'https://rubygems.org' -gem 'jekyll' +gem "jekyll" group :jekyll_plugins do - gem 'jekyll-sitemap' - gem 'jekyll-feed' - gem 'jekyll-seo-tag' + gem "jekyll-sitemap" + gem "jekyll-feed" + gem "jekyll-seo-tag" end ``` diff --git a/docs/_docs/upgrading/2-to-3.md b/docs/_docs/upgrading/2-to-3.md index 5c5d5ded..2426a576 100644 --- a/docs/_docs/upgrading/2-to-3.md +++ b/docs/_docs/upgrading/2-to-3.md @@ -93,7 +93,7 @@ it's now [Rouge](https://github.com/rouge-ruby/rouge). If you were using the `hi options, such as `hl_lines`, they may not be available when using Rouge. To go back to using Pygments, set `highlighter: pygments` in your `_config.yml` file and run `gem install pygments.rb` or add -`gem 'pygments.rb'` to your project's `Gemfile`. +`gem "pygments.rb"` to your project's `Gemfile`. ### Relative Permalink support removed diff --git a/docs/_posts/2019-08-19-jekyll-4-0-0-released.markdown b/docs/_posts/2019-08-19-jekyll-4-0-0-released.markdown index dec7401e..fe3a84ee 100644 --- a/docs/_posts/2019-08-19-jekyll-4-0-0-released.markdown +++ b/docs/_posts/2019-08-19-jekyll-4-0-0-released.markdown @@ -82,7 +82,7 @@ First, read the [upgrade guide](/docs/upgrading/3-to-4/)! Next, Edit your project's `Gemfile` to test Jekyll v4.x: ```ruby -gem "jekyll", "~> 4.0" +gem 'jekyll', '~> 4.0' ``` Then run `bundle update` to update all dependencies. Unless you're using