Method: Merb::Global::MessageProviders::Base::Importer#import
- Defined in:
- lib/merb_global/message_providers.rb
#import ⇒ Object
This method import the data into a specified format from source. The format is nearly dump of the current YAML format.
Returns
- data<~each>
-
Data in the specified format.
Raises
- NoMethodError
-
Raised by default implementation. Should not be thrown.
94 95 96 |
# File 'lib/merb_global/message_providers.rb', line 94 def import # TODO: Describe the format raise NoMethodError.new('method import has not been implemented') end |