Skip to content

Commit

Permalink
Merge pull request #18820 from Fryguy/block_ruby_2_6
Browse files Browse the repository at this point in the history
Raise error on Ruby 2.6 until it is supported
  • Loading branch information
bdunne authored May 29, 2019
2 parents 184bb9d + 947ade3 commit 4cdd856
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
raise "Ruby versions less than 2.3.1 are unsupported!" if RUBY_VERSION < "2.3.1"
raise "Ruby versions < 2.3.1 are unsupported!" if RUBY_VERSION < "2.3.1"
raise "Ruby versions >= 2.6 are unsupported!" if RUBY_VERSION >= "2.6.0"

source 'https://rubygems.org'

Expand Down

0 comments on commit 4cdd856

Please sign in to comment.