2015-12-16 05:07:31 +00:00
|
|
|
# frozen_string_literal: false
|
2004-03-06 17:08:21 +00:00
|
|
|
=begin
|
|
|
|
|
2010-01-08 12:17:15 +00:00
|
|
|
= net/https -- SSL/TLS enhancement for Net::HTTP.
|
2004-03-06 17:08:21 +00:00
|
|
|
|
2010-12-01 15:07:35 +00:00
|
|
|
This file has been merged with net/http. There is no longer any need to
|
2018-11-05 07:01:49 +00:00
|
|
|
require 'net/https' to use HTTPS.
|
2010-12-01 15:07:35 +00:00
|
|
|
|
|
|
|
See Net::HTTP for details on how to make HTTPS connections.
|
|
|
|
|
2004-03-06 17:08:21 +00:00
|
|
|
== Info
|
|
|
|
'OpenSSL for Ruby 2' project
|
|
|
|
Copyright (C) 2001 GOTOU Yuuzou <gotoyuzo@notwork.org>
|
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
== Licence
|
2015-04-20 03:55:09 +00:00
|
|
|
This program is licensed under the same licence as Ruby.
|
2004-03-06 17:08:21 +00:00
|
|
|
(See the file 'LICENCE'.)
|
|
|
|
|
|
|
|
=end
|
|
|
|
|
2018-11-02 17:52:33 +00:00
|
|
|
require_relative 'http'
|
2004-03-06 17:08:21 +00:00
|
|
|
require 'openssl'
|