Fix missing requires in toml, postgres_conf resources

toml was missing json
postgres_conf was missing object_traversal

Signed-off-by: Miah Johnson <miah@chia-pet.org>
This commit is contained in:
Miah Johnson 2019-05-19 11:31:59 -07:00
parent 7fb177a691
commit 94f14bae20
2 changed files with 2 additions and 0 deletions

View file

@ -1,5 +1,6 @@
# copyright: 2015, Vulcano Security GmbH
require 'utils/object_traversal'
require 'utils/simpleconfig'
require 'utils/find_files'
require 'utils/file_reader'

View file

@ -1,6 +1,7 @@
# author: Nolan Davidson
require 'tomlrb'
require 'inspec/resources/json'
module Inspec::Resources
class TomlConfig < JsonConfig