summaryrefslogtreecommitdiff
path: root/lib/chef/resource/gem_package.rb
diff options
context:
space:
mode:
authorTim Smith <tsmith84@gmail.com>2020-12-15 11:37:48 -0800
committerTim Smith <tsmith84@gmail.com>2020-12-15 11:37:48 -0800
commit7c01bc71b671c3c1889ffcfbe4be9ab184a1f9c8 (patch)
tree581d3b162ddea98a02cb57cfdc64b8ca16778a43 /lib/chef/resource/gem_package.rb
parent5335af31169969581a36a8941d147ff091d0ee27 (diff)
downloadchef-7c01bc71b671c3c1889ffcfbe4be9ab184a1f9c8.tar.gz
Improve our automated resource documentation generation
Add more note values to the descriptions, update a few examples for cookstyle and modern gems, and identify a few more resources as providing package on their platform Signed-off-by: Tim Smith <tsmith@chef.io>
Diffstat (limited to 'lib/chef/resource/gem_package.rb')
-rw-r--r--lib/chef/resource/gem_package.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/gem_package.rb b/lib/chef/resource/gem_package.rb
index c893e7a2f9..a3ad5f614b 100644
--- a/lib/chef/resource/gem_package.rb
+++ b/lib/chef/resource/gem_package.rb
@@ -44,8 +44,8 @@ class Chef
**Install a gem file from the local file system**
```ruby
- gem_package 'right_aws' do
- source '/tmp/right_aws-1.11.0.gem'
+ gem_package 'loofah' do
+ source '/tmp/loofah-2.7.0.gem'
action :install
end
```