Sha256: cee631e38c838fe87fc0b5892732a1f7d7b9d3e5eba313fc648edb9e835d97aa

Contents?: true

Size: 672 Bytes

Versions: 9

Compression:

Stored size: 672 Bytes

Contents

#!/usr/bin/env ruby
require "yaml"
require "English"

ruby24 = Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.4.0")

YAML.load_file(".travis.yml")["env"].each do |sshkit_version|
  # Older versions of SSHKit don't work with Ruby 2.4, so skip those
  next if ruby24 && sshkit_version !~ /master/
  puts "\e[0;34;49m== Running tests against #{sshkit_version} ==\e[0m"
  output = `#{sshkit_version} bundle update`
  raise "bundle update failed: #{output}" unless $CHILD_STATUS.success?
  system("#{sshkit_version} bundle exec rake test")
end

system("bundle exec rake rubocop")

at_exit do
  puts "\e[0;34;49m== Resetting sshkit ==\e[0m"
  system("bundle update")
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
honeybadger-4.5.3 vendor/bundle/ruby/2.6.0/gems/airbrussh-1.3.1/bin/test_all.rb
airbrussh-1.4.0 bin/test_all.rb
airbrussh-1.3.4 bin/test_all.rb
airbrussh-1.3.3 bin/test_all.rb
airbrussh-1.3.2 bin/test_all.rb
airbrussh-1.3.1 bin/test_all.rb
airbrussh-1.3.0 bin/test_all.rb
airbrussh-1.2.0 bin/test_all.rb
airbrussh-1.1.2 bin/test_all.rb