Module: Ecic::SourceFileAdder
- Included in:
- CLI, DesignGenerator, FileAdder
- Defined in:
- lib/ecic/helpers/source_file_adder.rb
Instance Method Summary collapse
Instance Method Details
#add_src_file(file_name) ⇒ Object
2 3 4 5 6 |
# File 'lib/ecic/helpers/source_file_adder.rb', line 2 def add_src_file(file_name) src_file = "src/design/#{@library_name}/sources.rb" create_file src_file unless File.exists?(src_file) append_to_file src_file, "source_file.create('#{file_name}')\n" end |