pixii 0.1.2 → 0.1.3
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/pixii.rb +4 -0
- metadata +1 -1
data/lib/pixii.rb
CHANGED
@@ -1,4 +1,5 @@
|
|
1
1
|
require 'open-uri'
|
2
|
+
require 'openssl'
|
2
3
|
require 'fileutils'
|
3
4
|
require 'erb'
|
4
5
|
require 'uri'
|
@@ -12,6 +13,9 @@ class Mash
|
|
12
13
|
end
|
13
14
|
|
14
15
|
# Disables SSL
|
16
|
+
module OpenSSL::SSL
|
17
|
+
remove_const :VERIFY_PEER
|
18
|
+
end
|
15
19
|
OpenSSL::SSL::VERIFY_PEER = OpenSSL::SSL::VERIFY_NONE
|
16
20
|
|
17
21
|
class Pixii
|