8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# File 'lib/generators/test_data/webpacker_yaml_generator.rb', line 8
def call
if Configurators::WebpackerYaml.new.verify.looks_good?
TestData.log.debug "'test_data' section not needed in config/webpacker.yml"
else
inject_into_file "config/webpacker.yml", after: AFTER_DEVELOPMENT_WEBPACK_STANZA_REGEX do
" &development"
end
inject_into_file "config/webpacker.yml", before: BEFORE_TEST_STANZA_REGEX do
<<~YAML
# Used in conjunction with the test_data gem
test_data:
<<: *development
YAML
end
end
end
|