diff options
author | eileencodes <eileencodes@gmail.com> | 2018-04-10 16:37:17 -0400 |
---|---|---|
committer | eileencodes <eileencodes@gmail.com> | 2018-04-10 16:40:14 -0400 |
commit | 72f17d59e40c95d08edb893b898145a7bf68d1a2 (patch) | |
tree | c6dd5986636d119e92f16a74f505362302f4c1fc /railties/lib/rails | |
parent | 561aad0c186103232c094e38d4d3fe4ea4c083f3 (diff) | |
download | rails-72f17d59e40c95d08edb893b898145a7bf68d1a2.tar.gz rails-72f17d59e40c95d08edb893b898145a7bf68d1a2.tar.bz2 rails-72f17d59e40c95d08edb893b898145a7bf68d1a2.zip |
Remove upper bound on Capybara
There's no reason to block future versions of Capybara since we don't
_know_ they are going to break. How will we know if we have a
conservative option set? This change prevents us from blocking users who
want to upgrade in the future.
Diffstat (limited to 'railties/lib/rails')
-rw-r--r-- | railties/lib/rails/generators/rails/app/templates/Gemfile.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt index 89263070ef..5e7455cdc7 100644 --- a/railties/lib/rails/generators/rails/app/templates/Gemfile.tt +++ b/railties/lib/rails/generators/rails/app/templates/Gemfile.tt @@ -69,7 +69,7 @@ end <%- if depends_on_system_test? -%> group :test do # Adds support for Capybara system testing and selenium driver - gem 'capybara', '>= 2.15', '< 4.0' + gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of chromedriver to run system tests with Chrome gem 'chromedriver-helper' |