我一直在使用模板来生成带有配置测试环境的Rails应用程序。
该行的模板工作正常:
gsub_file 'spec/rails_helper.rb', /\Aconfig.fixture_path.*\Z/,""
我想从rails_helper.rb中删除以下行:
config.fixture_path = "#{::Rails.root}/spec/fixtures"
我尝试了以下解决方案而没有结果:
comment_lines 'spec/rails_helper.rb', /\Aconfig.fixture_path.*\Z/
comment_lines 'spec/rails_helper.rb', /\Aconfig.fixture_path = "#{::Rails.root}\/spec\/fixtures"/
感谢您的帮助