Class: ShopifyToolkit::Migrator::MigrationProxy

Inherits:
Struct
  • Object
show all
Defined in:
lib/shopify_toolkit/migrator.rb

Overview

MigrationProxy is used to defer loading of the actual migration classes until they are needed

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, version, filename, scope) ⇒ MigrationProxy

Returns a new instance of MigrationProxy.



129
130
131
132
# File 'lib/shopify_toolkit/migrator.rb', line 129

def initialize(name, version, filename, scope)
  super
  @migration = nil
end

Instance Attribute Details

#filenameObject

Returns the value of attribute filename

Returns:

  • (Object)

    the current value of filename



128
129
130
# File 'lib/shopify_toolkit/migrator.rb', line 128

def filename
  @filename
end

#nameObject

Returns the value of attribute name

Returns:

  • (Object)

    the current value of name



128
129
130
# File 'lib/shopify_toolkit/migrator.rb', line 128

def name
  @name
end

#scopeObject

Returns the value of attribute scope

Returns:

  • (Object)

    the current value of scope



128
129
130
# File 'lib/shopify_toolkit/migrator.rb', line 128

def scope
  @scope
end

#versionObject

Returns the value of attribute version

Returns:

  • (Object)

    the current value of version



128
129
130
# File 'lib/shopify_toolkit/migrator.rb', line 128

def version
  @version
end

Instance Method Details

#basenameObject



134
135
136
# File 'lib/shopify_toolkit/migrator.rb', line 134

def basename
  File.basename(filename)
end