Class: RubiGen::Commands::Update
- Defined in:
- lib/rubigen/commands.rb
Overview
Update generator’s action manifest.
Instance Attribute Summary
Attributes inherited from Base
#args, #destination_root, #source_root, #stdout
Attributes included from Options
Instance Method Summary collapse
- #complex_template(relative_source, relative_destination, template_options = {}) ⇒ Object
- #directory(relative_path) ⇒ Object
- #file(relative_source, relative_destination, options = {}) ⇒ Object
- #template(relative_source, relative_destination, options = {}) ⇒ Object
Methods inherited from Create
#class_collisions, #file_copy_each, #folder, #identical?, #migration_template, #readme, #route_resources, #template_copy_each, #write_manifest
Methods inherited from Base
#class_collisions, #dependency, #invoke!, #readme, #write_manifest
Methods inherited from Base
#after_generate, #base_name, #destination_path, #initialize, #manifest, #source_path
Methods included from Options
Constructor Details
This class inherits a constructor from RubiGen::Base
Instance Method Details
#complex_template(relative_source, relative_destination, template_options = {}) ⇒ Object
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 |
# File 'lib/rubigen/commands.rb', line 655 def complex_template(relative_source, relative_destination, = {}) 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 "#{[:insert].gsub(/\.erb/,'')} inside #{relative_destination}" begin_mark = Regexp.quote(template_part_mark([:begin_mark], [:mark_id])) end_mark = Regexp.quote(template_part_mark([:end_mark], [:mark_id])) # Refreshing inner part of the template with freshly rendered part. rendered_part = render_template_part() source_to_update.gsub!(/#{begin_mark}.*?#{end_mark}/m, rendered_part) File.open(dest_file, 'w') { |file| file.write(source_to_update) } end |
#directory(relative_path) ⇒ Object
677 678 679 |
# File 'lib/rubigen/commands.rb', line 677 def directory(relative_path) # logger.directory "#{destination_path(relative_path)}/" end |
#file(relative_source, relative_destination, options = {}) ⇒ Object
647 648 649 |
# File 'lib/rubigen/commands.rb', line 647 def file(relative_source, relative_destination, = {}) # logger.file relative_destination end |
#template(relative_source, relative_destination, options = {}) ⇒ Object
651 652 653 |
# File 'lib/rubigen/commands.rb', line 651 def template(relative_source, relative_destination, = {}) # logger.template relative_destination end |