From 4325bc8486d516753eec2159044047016158e8d4 Mon Sep 17 00:00:00 2001 From: Wincent Colaiuta Date: Fri, 1 Jan 2016 08:47:14 +0100 Subject: [PATCH] Mark Ruby 2.3.0 as supported Fixes: https://github.com/wincent/wikitext/issues/3 --- ext/wikitext/extconf.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/wikitext/extconf.rb b/ext/wikitext/extconf.rb index 959b8dc..6eb844e 100644 --- a/ext/wikitext/extconf.rb +++ b/ext/wikitext/extconf.rb @@ -28,7 +28,7 @@ def missing item exit 1 end -if RUBY_VERSION !~ /\A2\.[012]\./ +if RUBY_VERSION !~ /\A2\.[0123](\.|$)/ raise "unsupported Ruby version: #{RUBY_VERSION}" end -- 2.40.1