Merge pull request #1097 from ashmaroli/stackprof-no-jruby

Don't attempt to install stackprof gem on JRuby
This commit is contained in:
Florian Weingarten
2019-04-24 09:11:44 -04:00
committed by GitHub

View File

@@ -9,7 +9,7 @@ group :benchmark, :test do
gem 'benchmark-ips'
gem 'memory_profiler'
install_if -> { RUBY_PLATFORM !~ /mingw|mswin/ } do
install_if -> { RUBY_PLATFORM !~ /mingw|mswin|java/ } do
gem 'stackprof'
end
end