Class: ActiveRecord::MigrationProxy
- Inherits:
-
Struct
- Object
- Struct
- ActiveRecord::MigrationProxy
- Defined in:
- lib/active_record/migration.rb
Overview
MigrationProxy is used to defer loading of the actual migration classes until they are needed
Instance Attribute Summary collapse
-
#filename ⇒ Object
Returns the value of attribute filename.
-
#name ⇒ Object
Returns the value of attribute name.
-
#version ⇒ Object
Returns the value of attribute version.
Instance Method Summary collapse
- #basename ⇒ Object
-
#initialize(name, version, filename) ⇒ MigrationProxy
constructor
A new instance of MigrationProxy.
Constructor Details
#initialize(name, version, filename) ⇒ MigrationProxy
Returns a new instance of MigrationProxy.
498 499 500 501 |
# File 'lib/active_record/migration.rb', line 498 def initialize(name, version, filename) super @migration = nil end |
Instance Attribute Details
#filename ⇒ Object
Returns the value of attribute filename
496 497 498 |
# File 'lib/active_record/migration.rb', line 496 def filename @filename end |
#name ⇒ Object
Returns the value of attribute name
496 497 498 |
# File 'lib/active_record/migration.rb', line 496 def name @name end |
#version ⇒ Object
Returns the value of attribute version
496 497 498 |
# File 'lib/active_record/migration.rb', line 496 def version @version end |
Instance Method Details
#basename ⇒ Object
503 504 505 |
# File 'lib/active_record/migration.rb', line 503 def basename File.basename(filename) end |