mirror of
https://github.com/elastic/logstash.git
synced 2025-06-28 09:46:03 -04:00
17 lines
341 B
Ruby
17 lines
341 B
Ruby
# encoding: utf-8
|
|
|
|
require 'rubygems'
|
|
|
|
::Gem.clear_paths
|
|
|
|
ENV['GEM_HOME'] = ENV['GEM_PATH'] = ::File.expand_path(
|
|
::File.join(__FILE__, "..", "..", "..", "build", "qa", "integration", "vendor", "jruby", "2.3.0")
|
|
)
|
|
|
|
require "bundler"
|
|
::Bundler.setup
|
|
|
|
require "rspec/core"
|
|
require "rspec"
|
|
|
|
return RSpec::Core::Runner.run($JUNIT_ARGV).to_i
|