cbeer / engine_cart

Rake tasks to generate test applications for Rails Engines
MIT License
18 stars 16 forks source link

Allow multiple rails_options #76

Closed jcoyne closed 7 years ago

jcoyne commented 7 years ago

Presently if you have .engine_cart.yml with this

rails_options: "--skip-test --skip-listen"

Then rails will recognize neither option.

Similarly if you have:

rails_options:
  - "--skip-test"
  - "--skip-listen"

again neither option is recognized.

This change allows us to support the latter format