Class: MXFinfo

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/mxfinfo.rb,
lib/mxfinfo/version.rb,
lib/mxfinfo/attr_readers.rb

Defined Under Namespace

Classes: InfoObject

Constant Summary collapse

VERSION =
"0.0.3.6"
@@binary =

We assume it’s in the path of the user

'avidmxfinfo'

Class Method Summary collapse

Class Method Details

.binaryObject

BINARY CHANGE



12
# File 'lib/mxfinfo.rb', line 12

def self.binary; @@binary; end

.binary=(binary) ⇒ Object



13
# File 'lib/mxfinfo.rb', line 13

def self.binary=(binary); @@binary = binary; end

.import(data) ⇒ Object



19
20
21
# File 'lib/mxfinfo.rb', line 19

def self.import(data)
  InfoObject.new(data, false)
end

.scan(path) ⇒ Object



15
16
17
# File 'lib/mxfinfo.rb', line 15

def self.scan(path)
  info = InfoObject.new(path)
end