Module: Podoff
- Defined in:
- lib/podoff.rb
Defined Under Namespace
Classes: Document, Obj, Stream
Constant Summary
collapse
- VERSION =
'1.2.2'
Class Method Summary
collapse
Class Method Details
.load(path, encoding) ⇒ Object
34
35
36
37
|
# File 'lib/podoff.rb', line 34
def self.load(path, encoding)
Podoff::Document.load(path, encoding)
end
|
.parse(s, encoding) ⇒ Object
39
40
41
42
|
# File 'lib/podoff.rb', line 39
def self.parse(s, encoding)
Podoff::Document.new(s, encoding)
end
|