Skip to content

Integrate rails application template into CLI

Eric Franz requested to merge rails_app_template into master

Created by: ericfranz

So the desired functionality is if the user enters this command:

awesim rails new wire_sim --skip-test-unit

the resulting command that is run is:

rails new wire_sim -m /path/to/rails/app/template/in/gem/dir/template.rb --skip-test-unit

And if

awesim rails new wire_sim

the resulting command is

rails new wire_sim -m /path/to/rails/app/template/in/gem/dir/template.rb

Merge request reports