Class: Middleman::Sitemap::Extensions::MoveFile::MoveFileDescriptor

Inherits:
Struct
  • Object
show all
Defined in:
lib/middleman-core/sitemap/extensions/move_file.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fromObject

Returns the value of attribute from

Returns:

  • (Object)

    the current value of from



15
16
17
# File 'lib/middleman-core/sitemap/extensions/move_file.rb', line 15

def from
  @from
end

#toObject

Returns the value of attribute to

Returns:

  • (Object)

    the current value of to



15
16
17
# File 'lib/middleman-core/sitemap/extensions/move_file.rb', line 15

def to
  @to
end

Instance Method Details

#execute_descriptor(_app, resources) ⇒ Object



16
17
18
19
20
21
22
# File 'lib/middleman-core/sitemap/extensions/move_file.rb', line 16

def execute_descriptor(_app, resources)
  resources.each do |r|
    r.destination_path = to if from == r.path || from == r.destination_path
  end

  resources
end