Method: Remi::Extractor::FileSystemEntry#initialize
- Defined in:
- lib/remi/extractor/file_system.rb
#initialize(pathname:, create_time:, modified_time:, raw: nil) ⇒ FileSystemEntry
Returns a new instance of FileSystemEntry.
5 6 7 8 9 10 |
# File 'lib/remi/extractor/file_system.rb', line 5 def initialize(pathname:, create_time:, modified_time:, raw: nil) @pathname = Pathname.new(pathname) @create_time = create_time @modified_time = modified_time @raw = raw end |