I'm trying to install capybara on a setup with Ruby 1.8.7 and Rails 2.3, but I received this message:
capybara requires Ruby version >= 1.9.3.
I have two questions.
The more relevant question:
- What is the latest capybara version compatible with that setup?
The more important question:
- How I can check that on my own?
In your gemfile, specify a version so you can install it. Looking at an REE app i have at work, we're using 1.1.4:
The
~>with1.1.xwill ensure it always stays at a1.1.xpatch level. Similarly if you use~> 1.2it will always stay at a1.xpatch level.