Skip to content

Commit

Permalink
Stop using webdrivers
Browse files Browse the repository at this point in the history
selenium-webdriver provides all that is needed now
  • Loading branch information
jcoyne committed Oct 13, 2023
1 parent c76c1e6 commit 291e8e5
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion example_app_generator/generate_app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@
# sqlite3 is an optional, unspecified, dependency and Rails 6.0 only supports `~> 1.4`
gsub_file "Gemfile", /.*gem..sqlite3.*/, "gem 'sqlite3', '~> 1.4'"

gsub_file "Gemfile", /.*chromedriver-helper.*/, "gem 'webdrivers'"
# remove webdrivers
gsub_file "Gemfile", /gem ['"]webdrivers['"]/, ""

if RUBY_ENGINE == "jruby"
gsub_file "Gemfile", /.*jdbc.*/, ''
Expand Down

0 comments on commit 291e8e5

Please sign in to comment.