Skip to content

Commit eab2d8c

Browse files
authored
Merge pull request #7 from MSP-Greg/require-uri
check.rb - add require 'bundler/vendor/uri/lib/uri'
2 parents b387520 + 42ced44 commit eab2d8c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
# ruby-ssl-check
22

33
This script tries to help you diagnose SSL problems, especially related to certificates or TLS version while connecting to https://rubygems.org.
4+
5+
It can be run by the following:
6+
```
7+
curl -Lks 'https://git.io/rg-ssl' | ruby
8+
```

check.rb

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
require 'rubygems'
2828
# Try for Bundler version
2929
require 'bundler'
30+
require 'bundler/vendor/uri/lib/uri'
3031
rescue LoadError
3132
end
3233

0 commit comments

Comments
 (0)