diff options
author | Tim Smith <tsmith@chef.io> | 2018-09-17 05:41:28 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 05:41:28 -0700 |
commit | 82670185d4093093914da566f389f757081ab5cc (patch) | |
tree | bc78b1e9fd8c5d01a2eda7fc46523826e8e3f3ad | |
parent | a49d00f8c65b23289e96c2e794b1ba0570cedc8d (diff) | |
parent | 0778ff3ec21ba96da9b7d4635c26e9cf6f09502d (diff) | |
download | ohai-82670185d4093093914da566f389f757081ab5cc.tar.gz |
Merge pull request #1251 from chef/require_yajl
Add missing require ffi_yajl in System class
-rw-r--r-- | lib/ohai/system.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/ohai/system.rb b/lib/ohai/system.rb index 7d5d973e..b58b06dc 100644 --- a/lib/ohai/system.rb +++ b/lib/ohai/system.rb @@ -29,6 +29,7 @@ require "ohai/provides_map" require "ohai/hints" require "mixlib/shellout" require "ohai/config" +require "ffi_yajl" module Ohai class System |