From 7a4c302ce85c0ead431b57ea20c2c10bf19607a1 Mon Sep 17 00:00:00 2001 From: Andrey Botalov Date: Sun, 10 Mar 2013 21:26:15 +0300 Subject: [PATCH] Require Ruby >= 1.9.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Last patch version of Ruby 1.9.2 (p320) was released in April 2012, almost a year ago. Since than 4 patch versions for 1.9.3 were released: : [fix1][1], [fix2][2], [fix3][3] 1.9.2 doesn't contain fixes for them so I think it's not supported   [1]: http://www.ruby-lang.org/en/news/2012/11/09/ruby19-hashdos-cve-2012-5371/   [2]: http://www.ruby-lang.org/en/news/2013/02/22/json-dos-cve-2013-0269/   [3]: http://www.ruby-lang.org/en/news/2013/02/22/rexml-dos-2013-02-22/ --- capybara.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/capybara.gemspec b/capybara.gemspec index b9edf94b..defda723 100644 --- a/capybara.gemspec +++ b/capybara.gemspec @@ -8,7 +8,7 @@ Gem::Specification.new do |s| s.name = "capybara" s.rubyforge_project = "capybara" s.version = Capybara::VERSION - s.required_ruby_version = ">= 1.9.0" + s.required_ruby_version = ">= 1.9.3" s.authors = ["Jonas Nicklas"] s.email = ["jonas.nicklas@gmail.com"]