Byebug requires Ruby 2.2 (#3790)

Also don't attempt to install it during testing.
This commit is contained in:
Colin Seymour
2017-08-24 10:17:12 +01:00
committed by GitHub
parent a878620a8e
commit b541b53b78
2 changed files with 6 additions and 1 deletions

View File

@@ -1,3 +1,6 @@
source 'https://rubygems.org'
gemspec :name => "github-linguist"
gem 'byebug' if RUBY_VERSION >= '2.0'
group :debug do
gem 'byebug' if RUBY_VERSION >= '2.2'
end