Skip to content

Commit

Permalink
Fix gem quote consistency on docs (#9517)
Browse files Browse the repository at this point in the history
Merge pull request 9517
  • Loading branch information
akirataguchi115 committed Jan 12, 2024
1 parent 839007f commit 01da87c
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions docs/_docs/continuous-integration/circleci.md
Expand Up @@ -30,8 +30,8 @@ source 'https://rubygems.org'

ruby '2.7.4'

gem 'jekyll'
gem 'html-proofer'
gem "jekyll"
gem "html-proofer"
```

```yaml
Expand Down
4 changes: 2 additions & 2 deletions docs/_docs/continuous-integration/github-actions.md
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/installation/windows.md
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docs/_docs/step-by-step/10-deployment.md
Expand Up @@ -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
```

Expand Down
2 changes: 1 addition & 1 deletion docs/_docs/upgrading/2-to-3.md
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion docs/_posts/2019-08-19-jekyll-4-0-0-released.markdown
Expand Up @@ -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
Expand Down

0 comments on commit 01da87c

Please sign in to comment.