Sha256: b1fbe283fa9d23284a7fea38670110d51d9b4d8dc2fbad473c644718acbc8c3d
Contents?: true
Size: 515 Bytes
Versions: 13
Compression:
Stored size: 515 Bytes
Contents
#!/bin/bash # This file was generated on 2019-01-03T20:34:23+00:00 from the rspec-dev repo. # DO NOT modify it by hand as your changes will get lost the next time it is generated. set -e function is_ruby_23_plus { if ruby -e "exit(RUBY_VERSION.to_f >= 2.3)"; then return 0 else return 1 fi } if is_ruby_23_plus; then gem update --system gem install bundler else echo "Warning installing older versions of Rubygems / Bundler" gem update --system '2.7.8' gem install bundler -v '1.17.3' fi
Version data entries
13 entries across 12 versions & 4 rubygems