Sha256: 0072d474087a5450bb6c24b0842508e74baae43baef16519330ffd34302b4f4e

Contents?: true

Size: 332 Bytes

Versions: 2

Compression:

Stored size: 332 Bytes

Contents

module PerconaMigrator
  class Configuration
    attr_accessor :tmp_path

    def initialize
      @tmp_path = '.'.freeze
      @error_log_filename = 'percona_migrator_error.log'.freeze
    end

    def error_log_path
      File.join(tmp_path, error_log_filename)
    end

    private

    attr_reader :error_log_filename
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
percona_migrator-0.1.1 lib/percona_migrator/configuration.rb
percona_migrator-1.0.0 lib/percona_migrator/configuration.rb