Spin will ignore any arguments passed to spin serve that are not paths to files:
|
f = files_to_load.select { |f| File.exist?(f.split(':')[0].to_s) }.uniq.join(SEPARATOR) |
This is unfortunate, as it prevents passing RSpec options to spin serve. I propose spin support a way to send in ARGV options that get set as the ARGV in the forked process.
Maybe we could use this style:
spin push -- --color --profile --tag type:model
Thoughts?
Spin will ignore any arguments passed to
spin servethat are not paths to files:spin/bin/spin
Line 191 in 72fbfc6
This is unfortunate, as it prevents passing RSpec options to
spin serve. I propose spin support a way to send in ARGV options that get set as the ARGV in the forked process.Maybe we could use this style:
Thoughts?