Sha256: c20d7a86c1f1339a4ae58650566d848b299e72d542a19aae0ea02582cd07c894

Contents?: true

Size: 422 Bytes

Versions: 6

Compression:

Stored size: 422 Bytes

Contents

#!/usr/bin/env ruby

$LOAD_PATH << File.join(__dir__, "../lib")

IS_RUBY_27 = Gem::Version.new(RUBY_VERSION).yield_self do |ruby_version|
  Gem::Version.new('2.7.0') <= ruby_version &&
    ruby_version <= Gem::Version.new('2.8.0')
end

unless IS_RUBY_27
  STDERR.puts "⚠️⚠️⚠️⚠️ stdlib test assumes Ruby 2.7 but RUBY_VERSION==#{RUBY_VERSION} ⚠️⚠️⚠️⚠️"
end

ARGV.each do |arg|
  load arg
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
rbs-0.15.0 bin/test_runner.rb
rbs-0.14.0 bin/test_runner.rb
rbs-0.13.1 bin/test_runner.rb
rbs-0.13.0 bin/test_runner.rb
rbs-0.12.2 bin/test_runner.rb
rbs-0.12.1 bin/test_runner.rb