We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a110b0f commit d0e3089Copy full SHA for d0e3089
example_app_generator/generate_app.rb
@@ -23,8 +23,10 @@
23
gsub_file "Gemfile", /.*debug.*/, ''
24
gsub_file "Gemfile", /.*puma.*/, ''
25
gsub_file "Gemfile", /.*bootsnap.*/, ''
26
- gsub_file "Gemfile", /.*chromedriver-helper.*/, '' if RUBY_VERSION >= "3.0" && Rails::VERSION::STRING >= '7'
27
- gsub_file "Gemfile", /.*webdrivers.*/, '' if RUBY_VERSION >= "3.0"
+ if RUBY_VERSION >= "3.0" && Rails::VERSION::STRING >= '7'
+ gsub_file "Gemfile", /.*chromedriver-helper.*/, ''
28
+ gsub_file "Gemfile", /.*webdrivers.*/, ''
29
+ end
30
31
append_to_file 'Gemfile', "gem 'rails-controller-testing'\n"
32
0 commit comments