certified-net-http-requests 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/README.md +2 -0
- data/certified.gemspec +2 -2
- data/lib/certified-net-http-requests/version.rb +1 -1
- metadata +11 -15
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: e3274534f45ff5c388fd235a27a35d805fab88cd
|
|
4
|
+
data.tar.gz: 22d7e2f8f8b5fa5fb1fc6e52547176967a3623a9
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 480b0ae144e6f3682dd002c601fa9a4d42fd01d04321bdf5c64f2d17e535fb0eda4b1b3b4aa4d6f34cd96b3bd87b969ddfb883ae93c8f980929d6a0ca0a6acf0
|
|
7
|
+
data.tar.gz: 4727a944ae9160f9e06ed59dc40920b6f87a3c030100658dec235d56f96e4642a9a3a7ae3d071fe91122ac17c46740157aa9abf1050a57caf7528505a2989f57
|
data/README.md
CHANGED
|
@@ -4,6 +4,8 @@ Gem for dealing with `SSL_connect returned=1 errno=0 state=SSLv3 read server cer
|
|
|
4
4
|
( http://martinottenwaelter.fr/2010/12/ruby19-and-the-ssl-error/ ) error. This project is highly inspired by
|
|
5
5
|
[certified](https://github.com/stevegraham/certified) project by Stevie Graham
|
|
6
6
|
|
|
7
|
+
[](http://badge.fury.io/rb/certified-net-http-requests)
|
|
8
|
+
|
|
7
9
|
## Installation
|
|
8
10
|
|
|
9
11
|
1. Add this line to your application's Gemfile:
|
data/certified.gemspec
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
require File.expand_path('../lib/certified-net-http-requests/version', __FILE__)
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
|
-
gem.authors =
|
|
6
|
-
gem.email =
|
|
5
|
+
gem.authors = ['Mailo Svetel']
|
|
6
|
+
gem.email = ['development@rooland.cz']
|
|
7
7
|
gem.description = %q{Gem for dealing with `SSL_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed` error}
|
|
8
8
|
gem.summary = %q{Make net/http verifying ssl certificates against Certificate Authorities from cURL CA bundle }
|
|
9
9
|
gem.homepage = "http://github.com/roolo/certified-net-http-requests"
|
metadata
CHANGED
|
@@ -1,27 +1,25 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: certified-net-http-requests
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.0.3
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
|
-
-
|
|
9
|
-
- Svetel"
|
|
7
|
+
- Mailo Svetel
|
|
10
8
|
autorequire:
|
|
11
9
|
bindir: bin
|
|
12
10
|
cert_chain: []
|
|
13
|
-
date:
|
|
11
|
+
date: 2015-02-23 00:00:00.000000000 Z
|
|
14
12
|
dependencies: []
|
|
15
|
-
description:
|
|
13
|
+
description: 'Gem for dealing with `SSL_connect returned=1 errno=0 state=SSLv3 read
|
|
16
14
|
server certificate B: certificate verify failed` error'
|
|
17
15
|
email:
|
|
18
|
-
-
|
|
16
|
+
- development@rooland.cz
|
|
19
17
|
executables:
|
|
20
18
|
- update-ca-bundle
|
|
21
19
|
extensions: []
|
|
22
20
|
extra_rdoc_files: []
|
|
23
21
|
files:
|
|
24
|
-
- .gitignore
|
|
22
|
+
- ".gitignore"
|
|
25
23
|
- Gemfile
|
|
26
24
|
- LICENSE
|
|
27
25
|
- README.md
|
|
@@ -34,28 +32,26 @@ files:
|
|
|
34
32
|
- lib/certified-net-http-requests/version.rb
|
|
35
33
|
homepage: http://github.com/roolo/certified-net-http-requests
|
|
36
34
|
licenses: []
|
|
35
|
+
metadata: {}
|
|
37
36
|
post_install_message:
|
|
38
37
|
rdoc_options: []
|
|
39
38
|
require_paths:
|
|
40
39
|
- lib
|
|
41
40
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
42
|
-
none: false
|
|
43
41
|
requirements:
|
|
44
|
-
- -
|
|
42
|
+
- - ">="
|
|
45
43
|
- !ruby/object:Gem::Version
|
|
46
44
|
version: '0'
|
|
47
45
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
48
|
-
none: false
|
|
49
46
|
requirements:
|
|
50
|
-
- -
|
|
47
|
+
- - ">="
|
|
51
48
|
- !ruby/object:Gem::Version
|
|
52
49
|
version: '0'
|
|
53
50
|
requirements: []
|
|
54
51
|
rubyforge_project:
|
|
55
|
-
rubygems_version:
|
|
52
|
+
rubygems_version: 2.4.5
|
|
56
53
|
signing_key:
|
|
57
|
-
specification_version:
|
|
54
|
+
specification_version: 4
|
|
58
55
|
summary: Make net/http verifying ssl certificates against Certificate Authorities
|
|
59
56
|
from cURL CA bundle
|
|
60
57
|
test_files: []
|
|
61
|
-
has_rdoc:
|