From 9cd43c7243d4bb147a9b59d2214a4aa775bf1466 Mon Sep 17 00:00:00 2001
From: Mike Coutermarsh <mscoutermarsh@github.com>
Date: Sun, 12 Jan 2020 13:53:33 -0800
Subject: [PATCH] Use "Bundler" which is the package manager

"Gem" isn't wrong, but not typically what a Ruby developer would think of.
---
 examples.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/examples.md b/examples.md
index b824dbe..b686d24 100644
--- a/examples.md
+++ b/examples.md
@@ -248,15 +248,15 @@ Replace `~/.cache/pip` with the correct `path` if not using Ubuntu.
       ${{ runner.os }}-pip-
 ```
 
-## Ruby - Gem
+## Ruby - Bundler
 
 ```yaml
 - uses: actions/cache@v1
   with:
     path: vendor/bundle
-    key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }}
+    key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
     restore-keys: |
-      ${{ runner.os }}-gem-
+      ${{ runner.os }}-gems-
 ```
 When dependencies are installed later in the workflow, we must specify the same path for the bundler.