Update generator's action manifest.

Methods
C
D
F
T
Instance Public methods
complex_template(relative_source, relative_destination, template_options = {})
# File rails/railties/lib/rails_generator/commands.rb, line 552
def complex_template(relative_source, relative_destination, template_options = {})

   begin
     dest_file = destination_path(relative_destination)
     source_to_update = File.readlines(dest_file).join
   rescue Errno::ENOENT
     logger.missing relative_destination
     return
   end

   logger.refreshing "#{template_options[:insert].gsub(/\.rhtml/,'')} inside #{relative_destination}"

   begin_mark = Regexp.quote(template_part_mark(template_options[:begin_mark], template_options[:mark_id]))
   end_mark = Regexp.quote(template_part_mark(template_options[:end_mark], template_options[:mark_id]))

   # Refreshing inner part of the template with freshly rendered part.
   rendered_part = render_template_part(template_options)
   source_to_update.gsub!(%r#{begin_mark}.*?#{end_mark}/, rendered_part)

   File.open(dest_file, 'w') { |file| file.write(source_to_update) }
end
directory(relative_path)
# File rails/railties/lib/rails_generator/commands.rb, line 574
def directory(relative_path)
  # logger.directory "#{destination_path(relative_path)}/"
end
file(relative_source, relative_destination, options = {})
# File rails/railties/lib/rails_generator/commands.rb, line 544
def file(relative_source, relative_destination, options = {})
  # logger.file relative_destination
end
template(relative_source, relative_destination, options = {})
# File rails/railties/lib/rails_generator/commands.rb, line 548
def template(relative_source, relative_destination, options = {})
  # logger.template relative_destination
end