Class: DocGenerationWrapper::Adapter::Abstract
- Inherits:
-
Object
- Object
- DocGenerationWrapper::Adapter::Abstract
show all
- Defined in:
- lib/doc_generation_wrapper/adapters/abstract.rb
Instance Method Summary
collapse
Instance Method Details
#create!(options) ⇒ Object
5
6
7
|
# File 'lib/doc_generation_wrapper/adapters/abstract.rb', line 5
def create! options
raise NotImplementedError
end
|
#document(document_id) ⇒ Object
13
14
15
|
# File 'lib/doc_generation_wrapper/adapters/abstract.rb', line 13
def document document_id
raise NotImplementedError
end
|
#status(status_id) ⇒ Object
9
10
11
|
# File 'lib/doc_generation_wrapper/adapters/abstract.rb', line 9
def status status_id
raise NotImplementedError
end
|