Sha256: 6cca1b835751d6de217b9e05f6b840f9e0f467988e8317c4500a47c05095c455

Contents?: true

Size: 442 Bytes

Versions: 4

Compression:

Stored size: 442 Bytes

Contents

# Copyright:: (c) Autotelik Media Ltd 2015
# Author ::   Tom Statter
# License::   MIT
#
#  Details::  Base class for Exporters, which provide services to export a Model
#             and it's data from database to an external format
#
module DataShift

  class ExporterBase

    attr_accessor :configuration
    attr_accessor :file_name

    def initialize
      @configuration = DataShift::Exporters::Configuration.call
    end

  end

end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
datashift-0.40.4 lib/datashift/exporters/exporter_base.rb
datashift-0.40.3 lib/datashift/exporters/exporter_base.rb
datashift-0.40.1 lib/exporters/exporter_base.rb
datashift-0.40.0 lib/exporters/exporter_base.rb