Class: Inspec::DirProvider
- Inherits:
-
FileProvider
- Object
- FileProvider
- Inspec::DirProvider
- Defined in:
- lib/inspec/file_provider.rb
Instance Attribute Summary collapse
-
#files ⇒ Object
readonly
Returns the value of attribute files.
Instance Method Summary collapse
- #binread(file) ⇒ Object
-
#initialize(path) ⇒ DirProvider
constructor
A new instance of DirProvider.
- #read(file) ⇒ Object
Methods inherited from FileProvider
Constructor Details
#initialize(path) ⇒ DirProvider
Returns a new instance of DirProvider.
71 72 73 74 75 76 77 78 |
# File 'lib/inspec/file_provider.rb', line 71 def initialize(path) @files = if File.file?(path) [path] else Dir[File.join(Shellwords.shellescape(path), '**', '*')] end @path = path end |
Instance Attribute Details
#files ⇒ Object (readonly)
Returns the value of attribute files.
70 71 72 |
# File 'lib/inspec/file_provider.rb', line 70 def files @files end |
Instance Method Details
#binread(file) ⇒ Object
86 87 88 89 90 |
# File 'lib/inspec/file_provider.rb', line 86 def binread(file) return nil unless files.include?(file) return nil unless File.file?(file) File.binread(file) end |
#read(file) ⇒ Object
80 81 82 83 84 |
# File 'lib/inspec/file_provider.rb', line 80 def read(file) return nil unless files.include?(file) return nil unless File.file?(file) File.read(file) end |