Add missing rubysl (rubinius libs) support.

This was already present in 1.x and 1.5 branches; not sure why master
was missing it.
This commit is contained in:
Jordan Sissel 2014-11-04 23:31:15 +00:00
parent f472d4af24
commit 90476bcbdb

View file

@ -58,6 +58,15 @@ Gem::Specification.new do |gem|
gem.add_runtime_dependency "oj" #(MIT-style license)
end
if RUBY_ENGINE == "rbx"
# rubinius puts the ruby stdlib into gems.
gem.add_runtime_dependency "rubysl"
# Include racc to make the xml tests pass.
# https://github.com/rubinius/rubinius/issues/2632#issuecomment-26954565
gem.add_runtime_dependency "racc"
end
# These are runtime-deps so you can do 'java -jar logstash.jar rspec <test>'
gem.add_runtime_dependency "spoon" #(Apache 2.0 license)
gem.add_runtime_dependency "mocha" #(MIT license)