restclient_with_cert 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +16 -0
- data/VERSION +1 -1
- metadata +5 -4
data/README.rdoc
ADDED
@@ -0,0 +1,16 @@
|
|
1
|
+
== Original RestClient
|
2
|
+
|
3
|
+
The original RestClient is written by Adam Wiggins.
|
4
|
+
|
5
|
+
https://github.com/archiloque/rest-client
|
6
|
+
|
7
|
+
This gem added a cert file to it and force SSL verification for those calls.
|
8
|
+
|
9
|
+
# <code>RestClient.get</code>
|
10
|
+
# <code>RestClient.post</code>
|
11
|
+
# <code>RestClient.put</code>
|
12
|
+
# <code>RestClient.delete</code>
|
13
|
+
|
14
|
+
== Copyright
|
15
|
+
|
16
|
+
Both the original RestClient and this gem are released under the MIT License: http://www.opensource.org/licenses/mit-license.php
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.0.
|
1
|
+
0.0.3
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: restclient_with_cert
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- nov matake
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2011-03-
|
18
|
+
date: 2011-03-25 00:00:00 +09:00
|
19
19
|
default_executable:
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|
@@ -45,6 +45,7 @@ extra_rdoc_files: []
|
|
45
45
|
files:
|
46
46
|
- .gitignore
|
47
47
|
- Gemfile
|
48
|
+
- README.rdoc
|
48
49
|
- Rakefile
|
49
50
|
- VERSION
|
50
51
|
- lib/cert
|