rails/railties/lib
Yuji Yaginuma 44a64ce904 Correctly output driven_by setting for Development Containers
Currently, `ENV["SELENIUM_HOST"]` is evaluated when generating a file. So
the result was the following.

```
  driven_by :selenium, using: :headless_chrome, screen_size: [ 1400, 1400 ], options: {
    browser: :remote,
    url: "http://:4444"
  }
```

This PR fixes to output the URL setting just as a string. The after
result is the following.

```
  driven_by :selenium, using: :headless_chrome, screen_size: [ 1400, 1400 ], options: {
    browser: :remote,
    url: "http://#{ENV["SELENIUM_HOST"]}:4444"
  }
```
2024-06-13 16:30:20 +09:00
..
minitest Point to the right executable when warning about --profile 2024-05-23 16:19:53 +00:00
rails Correctly output driven_by setting for Development Containers 2024-06-13 16:30:20 +09:00
rails.rb add documentation for Rails.env.local? 2024-03-22 13:16:02 +01:00