Module: SampleDataDump::Interfaces::LocalFileSystemGateway
- Extended by:
- Duckface::ActsAsInterface
- Defined in:
- lib/sample_data_dump/interfaces/local_file_system_gateway.rb
Instance Method Summary collapse
- #clean_dump_directory ⇒ Object
- #compress_dump_file(_table_configuration) ⇒ Object
- #decompress_compressed_dump_file(_table_configuration) ⇒ Object
- #load_table_configurations ⇒ Object
Instance Method Details
#clean_dump_directory ⇒ Object
10 11 12 |
# File 'lib/sample_data_dump/interfaces/local_file_system_gateway.rb', line 10 def clean_dump_directory raise NotImplementedError end |
#compress_dump_file(_table_configuration) ⇒ Object
14 15 16 |
# File 'lib/sample_data_dump/interfaces/local_file_system_gateway.rb', line 14 def compress_dump_file(_table_configuration) raise NotImplementedError end |
#decompress_compressed_dump_file(_table_configuration) ⇒ Object
18 19 20 |
# File 'lib/sample_data_dump/interfaces/local_file_system_gateway.rb', line 18 def decompress_compressed_dump_file(_table_configuration) raise NotImplementedError end |
#load_table_configurations ⇒ Object
22 23 24 |
# File 'lib/sample_data_dump/interfaces/local_file_system_gateway.rb', line 22 def load_table_configurations raise NotImplementedError end |